Skip to content

Commit 2b5c97e

Browse files
committed
chore: add Python 3.10 - 3.12 support and test environments
1 parent 05017b3 commit 2b5c97e

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ Or download the source and run the setup file (requires setuptools):
4545
4646
$ python setup.py install
4747
48-
Xenon is tested with Python versions **2.7** and **3.6** to **3.9** as well as
48+
Xenon is tested with Python versions **2.7** and **3.6** to **3.12** as well as
4949
**PyPy**.
5050

5151
Usage

setup.py

+3
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,9 @@
4444
'Programming Language :: Python :: 3.7',
4545
'Programming Language :: Python :: 3.8',
4646
'Programming Language :: Python :: 3.9',
47+
'Programming Language :: Python :: 3.10',
48+
'Programming Language :: Python :: 3.11',
49+
'Programming Language :: Python :: 3.12',
4750
'Topic :: Software Development',
4851
'Topic :: Software Development :: Libraries :: Python Modules',
4952
'Topic :: Software Development :: Quality Assurance',

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py27,py36,py37,py38,py39,pypy
2+
envlist = py27,py36,py37,py38,py39,py310,py311,py312,pypy
33

44
[testenv]
55
deps = -r{toxinidir}/tox_requirements.txt

0 commit comments

Comments
 (0)