diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 3b720e5..96ca50f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -8,7 +8,7 @@ jobs: strategy: max-parallel: 5 matrix: - python-version: ['3.6', '3.7', '3.8', '3.9'] + python-version: ['3.6', '3.7', '3.8', '3.9', '3.10'] steps: - uses: actions/checkout@v2 diff --git a/setup.py b/setup.py index 14c0755..14cd4ba 100644 --- a/setup.py +++ b/setup.py @@ -43,6 +43,7 @@ setup( 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', + 'Programming Language :: Python :: 3.10', 'Topic :: Internet :: WWW/HTTP', 'Topic :: Software Development :: Libraries :: Python Modules', ], diff --git a/tox.ini b/tox.ini index 6690cb6..b681e81 100644 --- a/tox.ini +++ b/tox.ini @@ -1,8 +1,9 @@ [tox] envlist = # Python/Django combinations that are officially supported - py{36,37,38,39}-django{22,31,32} - py{38,39}-django{40} + py{36,37,38,39}-django{22,31} + py{36,37,38,39,310}-django{32} + py{38,39,310}-django{40} py37-{flake8,bandit,readme,docs,isort} [testenv] @@ -25,6 +26,7 @@ python = 3.7: py37 3.8: py38 3.9: py39 + 3.10: py310 [testenv:py37-bandit] description = PyCQA security linter