diff --git a/.travis.yml b/.travis.yml index 15b404a0..792d8a41 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,6 +8,7 @@ python: - "3.6" - "3.7" - "3.8" + - "3.9" # command to install dependencies install: - pip install -r requirements.txt diff --git a/setup.py b/setup.py index cf84b682..5bfa79bb 100644 --- a/setup.py +++ b/setup.py @@ -27,7 +27,7 @@ def required(requirements_file): setup( name='lingua_franca', - version='0.2.3', + version='0.3.0', packages=['test', 'lingua_franca', 'lingua_franca.lang'], url='https://github.com/MycroftAI/lingua-franca', license='Apache2.0', @@ -49,5 +49,6 @@ def required(requirements_file): 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', + 'Programming Language :: Python :: 3.9', ], )