From 95159eb8829c648cdcc8da326d9bd437cf95f68f Mon Sep 17 00:00:00 2001 From: Mufaddal Rohawala Date: Thu, 16 Dec 2021 15:02:22 -0800 Subject: [PATCH] feature: enable python 3.9 --- setup.py | 1 + tox.ini | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 338313f25d..5b6c31fd3c 100644 --- a/setup.py +++ b/setup.py @@ -104,6 +104,7 @@ def read_version(): "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", ], install_requires=required_packages, extras_require=extras, diff --git a/tox.ini b/tox.ini index b8dc0292f9..d5d26fc9ee 100644 --- a/tox.ini +++ b/tox.ini @@ -4,7 +4,7 @@ # and then run "tox" from this directory. [tox] -envlist = black-format,flake8,pylint,docstyle,sphinx,doc8,twine,py36,py37,py38 +envlist = black-format,flake8,pylint,docstyle,sphinx,doc8,twine,py36,py37,py38,py39 skip_missing_interpreters = False @@ -72,7 +72,7 @@ commands = {env:IGNORE_COVERAGE:} coverage report -i --fail-under=86 deps = .[test] depends = - {py36,py37,py38}: clean + {py36,py37,py38,py39}: clean [testenv:flake8] skipdist = true