diff --git a/.travis.yml b/.travis.yml index d25a5a8f..17440d90 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,6 +11,7 @@ python: - 3.6 - 3.7 - 3.8 + - 3.9 install: - pip install --upgrade pytest # needed for cases where there is already an old pytest installed - pip install pytest-cov # needed for the codecov uploader diff --git a/docs/ChangeLog.rst b/docs/ChangeLog.rst index 9b36f6fe..68a5fb19 100644 --- a/docs/ChangeLog.rst +++ b/docs/ChangeLog.rst @@ -8,7 +8,7 @@ Version 1.0 (in development) Main changes: ------------- -* Added support for Python 3.8. +* Added support for Python 3.8 and 3.9. * ``StatefulBrowser`` methods ``get_current_page``, ``get_current_form`` and ``get_url`` have been deprecated in favor diff --git a/setup.py b/setup.py index 0ec5398f..2178daeb 100644 --- a/setup.py +++ b/setup.py @@ -66,6 +66,7 @@ def read(fname, URL, URLImage): 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', + 'Programming Language :: Python :: 3.9', ], packages=['mechanicalsoup'],