Skip to content

Commit

Permalink
fix tox call and expose 3.12 support
Browse files Browse the repository at this point in the history
Signed-off-by: Sylvain Hellegouarch <[email protected]>
  • Loading branch information
Lawouach committed Dec 19, 2024
1 parent 750d922 commit debbb4f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,4 @@ jobs:
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Test with tox
run: |
tox -e py
tox
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ def find_package_modules(self, package, package_dir):
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Communications',
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
# and then run "tox" from this directory.

[tox]
envlist = py27,py36,py37,py38,py39,py310,py311
envlist = py27,py36,py37,py38,py39,py310,py311,py312

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

0 comments on commit debbb4f

Please sign in to comment.