diff --git a/azure-pipelines.yml b/azure-pipelines.yml index fdf6d85a..ec0eea32 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -21,6 +21,8 @@ jobs: python.version: '3.9' Python310: python.version: '3.10' + Python311: + python.version: '3.11' maxParallel: 3 steps: diff --git a/setup.py b/setup.py index 9c1fca6f..1cb11fe4 100644 --- a/setup.py +++ b/setup.py @@ -77,6 +77,8 @@ setup( 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', + 'Programming Language :: Python :: 3.10', + 'Programming Language :: Python :: 3.11', 'Topic :: Games/Entertainment', 'Topic :: Multimedia', 'Topic :: Multimedia :: Sound/Audio', diff --git a/tox.ini b/tox.ini index 2c125d84..24871c06 100644 --- a/tox.ini +++ b/tox.ini @@ -4,12 +4,16 @@ envlist = clean, check, - {py37}, + {py37, py38, py39, py310, py311}, report [testenv] basepython = py37: {env:TOXPYTHON:python3.7} + py38: {env:TOXPYTHON:python3.8} + py39: {env:TOXPYTHON:python3.9} + py310: {env:TOXPYTHON:python3.10} + py311: {env:TOXPYTHON:python3.11} {clean,check,report,codecov}: {env:TOXPYTHON:python3} setenv = PYTHONPATH={toxinidir}/tests