Skip to content

Commit 95159eb

Browse files
feature: enable python 3.9
1 parent b026769 commit 95159eb

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,7 @@ def read_version():
104104
"Programming Language :: Python :: 3.6",
105105
"Programming Language :: Python :: 3.7",
106106
"Programming Language :: Python :: 3.8",
107+
"Programming Language :: Python :: 3.9",
107108
],
108109
install_requires=required_packages,
109110
extras_require=extras,

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# and then run "tox" from this directory.
55

66
[tox]
7-
envlist = black-format,flake8,pylint,docstyle,sphinx,doc8,twine,py36,py37,py38
7+
envlist = black-format,flake8,pylint,docstyle,sphinx,doc8,twine,py36,py37,py38,py39
88

99
skip_missing_interpreters = False
1010

@@ -72,7 +72,7 @@ commands =
7272
{env:IGNORE_COVERAGE:} coverage report -i --fail-under=86
7373
deps = .[test]
7474
depends =
75-
{py36,py37,py38}: clean
75+
{py36,py37,py38,py39}: clean
7676

7777
[testenv:flake8]
7878
skipdist = true

0 commit comments

Comments
 (0)