diff --git a/setup.py b/setup.py index ae55452..7c21eb2 100644 --- a/setup.py +++ b/setup.py @@ -48,6 +48,8 @@ def get_version(module): 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', + 'Programming Language :: Python :: 3.9', + 'Programming Language :: Python :: 3.10', 'Topic :: Internet :: WWW/HTTP', ] ) diff --git a/tox.ini b/tox.ini index 0afaf95..8e3d9fd 100644 --- a/tox.ini +++ b/tox.ini @@ -1,13 +1,10 @@ [tox] envlist = - flake8, - py35, - py36, - py37, - py38, + flake8 + py{35,36,37,38,39,310} [testenv] -commands = python setup.py test +commands = python -m unittest -v [testenv:flake8] deps = flake8