From 881d8345f6f2b9f3fc5d8c3f52a65e2d5e306eee Mon Sep 17 00:00:00 2001 From: Kaxil Naik Date: Tue, 20 Apr 2021 20:03:45 +0100 Subject: [PATCH] Add Python 3.8 & 3.9 as supported version 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 --- .github/workflows/run-tests.yml | 4 ++++ setup.py | 2 ++ tox.ini | 2 +- 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index b8c799f..80bf997 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -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: diff --git a/setup.py b/setup.py index 4e205a4..80b08f5 100644 --- a/setup.py +++ b/setup.py @@ -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", ], diff --git a/tox.ini b/tox.ini index 2d5e092..c432727 100644 --- a/tox.ini +++ b/tox.ini @@ -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=