Skip to content

Commit

Permalink
feat: add support for Python 3.9, drop support for Python 3.5 (#191)
Browse files Browse the repository at this point in the history
* feat: add support for Python 3.9

Closes #189.

* chore: drop Python 3.5 support

* fix: overlooked python-requires change
  • Loading branch information
tseaver committed Dec 14, 2020
1 parent b3a7d4d commit 76839fb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions noxfile.py
Expand Up @@ -24,8 +24,8 @@

DEFAULT_PYTHON_VERSION = "3.8"
SYSTEM_TEST_PYTHON_VERSIONS = ["2.7", "3.8"]
UNIT_TEST_PYTHON_VERSIONS = ["3.6", "3.7", "3.8"]
UNIT_TEST_SYNC_PYTHON_VERSIONS = ["2.7", "3.5"]
UNIT_TEST_PYTHON_VERSIONS = ["3.6", "3.7", "3.8", "3.9"]
UNIT_TEST_SYNC_PYTHON_VERSIONS = ["2.7"]


@nox.session(python=UNIT_TEST_PYTHON_VERSIONS)
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -53,7 +53,7 @@
zip_safe=False,
install_requires=REQUIREMENTS,
extras_require=EXTRAS_REQUIRE,
python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*',
python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
Expand All @@ -62,10 +62,10 @@
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Internet',
],
)

0 comments on commit 76839fb

Please sign in to comment.