Add new Python versions to tests.

This commit is contained in:
Labrys of Knossos 2022-12-02 22:06:18 -05:00
parent 9307563ab8
commit 8b409a5716
2 changed files with 7 additions and 1 deletions

View file

@ -25,6 +25,8 @@ jobs:
python.version: '3.9'
Python310:
python.version: '3.10'
Python311:
python.version: '3.11'
maxParallel: 3
steps:

View file

@ -4,7 +4,7 @@
envlist =
clean,
check,
{py27, py35, py36, py37},
{py27, py35, py36, py37, py38, py39, py310, py311},
report
[testenv]
@ -13,6 +13,10 @@ basepython =
py35: {env:TOXPYTHON:python3.5}
py36: {env:TOXPYTHON:python3.6}
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