Skip to content

Commit 337dbe8

Browse files
authored
Add Python 3.8 & 3.9 as supported version (#442)
Since Py 3.8 & 3.9 is supported, we should update the identified, as it is shown on PIP and gives wrong impressions that Py 3.8 is not supported
1 parent 00e8156 commit 337dbe8

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

.github/workflows/run-tests.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@ jobs:
1717
tox-env: py36
1818
- python-version: 3.7
1919
tox-env: py37,docs,readme,black
20+
- python-version: 3.8
21+
tox-env: py38
22+
- python-version: 3.9
23+
tox-env: py39
2024
- python-version: pypy3
2125
tox-env: pypy3
2226
steps:

setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,8 @@ def readall(path):
6060
"Programming Language :: Python :: 3.5",
6161
"Programming Language :: Python :: 3.6",
6262
"Programming Language :: Python :: 3.7",
63+
"Programming Language :: Python :: 3.8",
64+
"Programming Language :: Python :: 3.9",
6365
"Programming Language :: Python :: Implementation :: CPython",
6466
"Programming Language :: Python :: Implementation :: PyPy",
6567
],

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist=py27,py34,py35,py36,py37,pypy,pypy3,docs,readme,black
2+
envlist=py27,py34,py35,py36,py37,py38,py39,pypy,pypy3,docs,readme,black
33

44
[testenv]
55
deps=

0 commit comments

Comments
 (0)