Skip to content

Commit

Permalink
Add Python 3.8 & 3.9 as supported version (#442)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
kaxil committed Jan 1, 2022
1 parent 00e8156 commit 337dbe8
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ jobs:
tox-env: py36
- python-version: 3.7
tox-env: py37,docs,readme,black
- python-version: 3.8
tox-env: py38
- python-version: 3.9
tox-env: py39
- python-version: pypy3
tox-env: pypy3
steps:
Expand Down
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,8 @@ def readall(path):
"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",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
],
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist=py27,py34,py35,py36,py37,pypy,pypy3,docs,readme,black
envlist=py27,py34,py35,py36,py37,py38,py39,pypy,pypy3,docs,readme,black

[testenv]
deps=
Expand Down

0 comments on commit 337dbe8

Please sign in to comment.