Skip to content

Commit 0bf3d19

Browse files
committed
Add support for Python 3.12
1 parent 2cea7a3 commit 0bf3d19

File tree

4 files changed

+4
-6
lines changed

4 files changed

+4
-6
lines changed

.github/workflows/build-and-test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ jobs:
1414
python: 3.8
1515

1616
# Latest Python & Pytest
17-
- toxenv: py311-pytest_latest-supported-xdist
18-
python: 3.11
17+
- toxenv: py312-pytest_latest-supported-xdist
18+
python: 3.12
1919

2020
# QA
2121
- toxenv: qa

setup.cfg

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
[bdist_wheel]
2-
universal = 1
3-
41
[flake8]
52
max-line-length = 88
63
extend-ignore = E203

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ def get_version(filename):
6565
"Programming Language :: Python :: 3.9",
6666
"Programming Language :: Python :: 3.10",
6767
"Programming Language :: Python :: 3.11",
68+
"Programming Language :: Python :: 3.12",
6869
"Programming Language :: Python :: Implementation :: PyPy",
6970
],
7071
)

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
minversion = 3.14.0
3-
envlist = py{38,311,py}-pytest_latest-supported-xdist
3+
envlist = py{38,312,py}-pytest_latest-supported-xdist
44
qa
55
requires = virtualenv>=20.0.31
66

0 commit comments

Comments
 (0)