Codebase list python-jwcrypto / 07d440c
Update python versions used for testing Signed-off-by: Simo Sorce <simo@redhat.com> Simo Sorce authored 2 years ago Simo Sorce committed 2 years ago
3 changed file(s) with 17 addition(s) and 9 deletion(s). Raw diff Collapse all Expand all
1717 "python-37",
1818 "python-38",
1919 "python-39",
20 "python-310",
2021 "doc",
2122 "sphinx",
2223 "lint",
4849 "arch": "x64",
4950 },
5051 {
52 "name": "python-310",
53 "python": "3.10",
54 "toxenv": "py310",
55 "arch": "x64",
56 },
57 {
5158 "name": "doc",
52 "python": "3.9",
59 "python": "3.10",
5360 "toxenv": "doc",
5461 "arch": "x64",
5562 },
5663 {
5764 "name": "sphinx",
58 "python": "3.9",
65 "python": "3.10",
5966 "toxenv": "sphinx",
6067 "arch": "x64",
6168 },
6269 {
6370 "name": "lint",
64 "python": "3.9",
71 "python": "3.10",
6572 "toxenv": "lint",
6673 "arch": "x64",
6774 },
6875 {
6976 "name": "pep8",
70 "python": "3.9",
77 "python": "3.10",
7178 "toxenv": "pep8",
7279 "arch": "x64",
7380 },
1717 'Programming Language :: Python :: 3.7',
1818 'Programming Language :: Python :: 3.8',
1919 'Programming Language :: Python :: 3.9',
20 'Programming Language :: Python :: 3.10',
2021 'Intended Audience :: Developers',
2122 'Topic :: Security',
2223 'Topic :: Software Development :: Libraries :: Python Modules'
00 [tox]
1 envlist = lint,py36,py37,py38,py39,pep8,doc,sphinx
1 envlist = lint,py36,py37,py38,py39,py310,pep8,doc,sphinx
22 skip_missing_interpreters = true
33
44 [testenv]
1414 {envpython} -m coverage report -m
1515
1616 [testenv:lint]
17 basepython = python3.9
17 basepython = python3.10
1818 deps =
1919 pylint
2020 #sitepackages = True
2222 {envpython} -m pylint -d c,r,i,W0613 -r n -f colorized --notes= --disable=star-args ./jwcrypto
2323
2424 [testenv:pep8]
25 basepython = python3
25 basepython = python3.10
2626 deps =
2727 flake8
2828 flake8-import-order
3535 doc8
3636 docutils
3737 markdown
38 basepython = python3
38 basepython = python3.10
3939 commands =
4040 doc8 --allow-long-titles README.md
4141 markdown_py README.md -f {toxworkdir}/README.md.html
4242
4343 [testenv:sphinx]
44 basepython = python3
44 basepython = python3.10
4545 changedir = docs/source
4646 deps =
4747 sphinx