Skip to content

Commit 13a38ac

Browse files
authored
Support Python 3.12 (#2922)
1 parent 361fb0f commit 13a38ac

File tree

4 files changed

+4
-2
lines changed

4 files changed

+4
-2
lines changed

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
strategy:
99
matrix:
1010
os: [ubuntu-latest, macos-latest, windows-latest]
11-
python: [ 3.7, 3.8, 3.9, "3.10", "3.11" ]
11+
python: [ 3.7, 3.8, 3.9, "3.10", "3.11", "3.12" ]
1212

1313
steps:
1414
- uses: actions/checkout@v4

CONTRIBUTING.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ Tox test suites available:
5959
* **py39**: Unit tests (Python 3.9)
6060
* **py310**: Unit tests (Python 3.10)
6161
* **py311**: Unit tests (Python 3.11)
62+
* **py312**: Unit tests (Python 3.12)
6263
* **style**: Python syntax check
6364

6465
## Contributing via Pull Requests

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,5 +74,6 @@ def get_version(filename):
7474
'Programming Language :: Python :: 3.9',
7575
'Programming Language :: Python :: 3.10',
7676
'Programming Language :: Python :: 3.11',
77+
'Programming Language :: Python :: 3.12',
7778
],
7879
)

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py{37,38,39,310,311},style
2+
envlist = py{37,38,39,310,311,312},style
33

44
[testenv]
55
commands =

0 commit comments

Comments
 (0)