mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-08-14 02:26:53 -07:00
Merge pull request #1919 from clinton-hall/hello-friend
Add new Python versions to tests.
This commit is contained in:
commit
2b6a7add72
3 changed files with 9 additions and 1 deletions
|
@ -25,6 +25,8 @@ jobs:
|
||||||
python.version: '3.9'
|
python.version: '3.9'
|
||||||
Python310:
|
Python310:
|
||||||
python.version: '3.10'
|
python.version: '3.10'
|
||||||
|
Python311:
|
||||||
|
python.version: '3.11'
|
||||||
maxParallel: 3
|
maxParallel: 3
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -82,6 +82,8 @@ setup(
|
||||||
'Programming Language :: Python :: 3.7',
|
'Programming Language :: Python :: 3.7',
|
||||||
'Programming Language :: Python :: 3.8',
|
'Programming Language :: Python :: 3.8',
|
||||||
'Programming Language :: Python :: 3.9',
|
'Programming Language :: Python :: 3.9',
|
||||||
|
'Programming Language :: Python :: 3.10',
|
||||||
|
'Programming Language :: Python :: 3.11',
|
||||||
'Topic :: Games/Entertainment',
|
'Topic :: Games/Entertainment',
|
||||||
'Topic :: Multimedia',
|
'Topic :: Multimedia',
|
||||||
'Topic :: Multimedia :: Sound/Audio',
|
'Topic :: Multimedia :: Sound/Audio',
|
||||||
|
|
6
tox.ini
6
tox.ini
|
@ -4,7 +4,7 @@
|
||||||
envlist =
|
envlist =
|
||||||
clean,
|
clean,
|
||||||
check,
|
check,
|
||||||
{py27, py35, py36, py37},
|
{py27, py35, py36, py37, py38, py39, py310, py311},
|
||||||
report
|
report
|
||||||
|
|
||||||
[testenv]
|
[testenv]
|
||||||
|
@ -13,6 +13,10 @@ basepython =
|
||||||
py35: {env:TOXPYTHON:python3.5}
|
py35: {env:TOXPYTHON:python3.5}
|
||||||
py36: {env:TOXPYTHON:python3.6}
|
py36: {env:TOXPYTHON:python3.6}
|
||||||
py37: {env:TOXPYTHON:python3.7}
|
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}
|
{clean,check,report,codecov}: {env:TOXPYTHON:python3}
|
||||||
setenv =
|
setenv =
|
||||||
PYTHONPATH={toxinidir}/tests
|
PYTHONPATH={toxinidir}/tests
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue