Skip to content
Snippets Groups Projects
Commit 3323e3e26d8a authored by Cédric Krier's avatar Cédric Krier :atom:
Browse files

Add support to Python 3.10, 3.11, 3.12

parent c9d49931dc9d
No related branches found
No related tags found
1 merge request!5Add support to Python 3.10, 3.11, 3.12
Pipeline #72109 passed
......@@ -57,7 +57,7 @@
- tox -e "py${PYTHON_VERSION/./}" -vv -- -v --output-file junit.xml
parallel:
matrix:
- PYTHON_VERSION: ["3.5", "3.6", "3.7", "3.8", "3.9"]
- PYTHON_VERSION: ["3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
test-tox-pypy:
extends: .test-tox
......
* Add support to Python 3.10, 3.11, 3.12
Version 0.6.0 - 2021-09-18
* Remove support for Python older than 3.5
* Add support for Python 3.9
......
......@@ -47,6 +47,9 @@
'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',
'Programming Language :: Python :: 3.12',
'Topic :: Office/Business',
'Topic :: Software Development :: Libraries',
'Topic :: Utilities',
......
......@@ -4,7 +4,7 @@
# and then run "tox" from this directory.
[tox]
envlist = py35, py36, py37, py38, py39, pypy3
envlist = py35, py36, py37, py38, py39, py310, py311, py312, pypy3
[testenv]
usedevelop = true
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment