Skip to content

Commit debbb4f

Browse files
committed
fix tox call and expose 3.12 support
Signed-off-by: Sylvain Hellegouarch <[email protected]>
1 parent 750d922 commit debbb4f

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/python-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,4 @@ jobs:
3737
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
3838
- name: Test with tox
3939
run: |
40-
tox -e py
40+
tox

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ def find_package_modules(self, package, package_dir):
6767
'Programming Language :: Python :: 3.9',
6868
'Programming Language :: Python :: 3.10',
6969
'Programming Language :: Python :: 3.11',
70+
'Programming Language :: Python :: 3.12',
7071
'Programming Language :: Python :: Implementation :: CPython',
7172
'Programming Language :: Python :: Implementation :: PyPy',
7273
'Topic :: Communications',

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
# and then run "tox" from this directory.
55

66
[tox]
7-
envlist = py27,py36,py37,py38,py39,py310,py311
7+
envlist = py27,py36,py37,py38,py39,py310,py311,py312
88

99
[testenv]
1010
commands = pytest
1111
deps =
1212
py27: -r requirements/py2kreqs.txt
13-
{py36,py37,py38,py39,py310,py311}: -r requirements/py3kreqs.txt
13+
{py36,py37,py38,py39,py310,py311,py312}: -r requirements/py3kreqs.txt

0 commit comments

Comments
 (0)