Skip to content

Commit ab89d83

Browse files
committed
add Py3.12 support
1 parent 6a57e10 commit ab89d83

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,10 @@ jobs:
1010
strategy:
1111
matrix:
1212
os: [ubuntu]
13-
python: [3.7, 3.8, 3.9, '3.10', 3.11]
13+
python: [3.7, 3.8, 3.9, '3.10', 3.11, 3.12]
1414
include:
15-
- os: macos
16-
python: 3.11
17-
- os: windows
18-
python: 3.11
15+
- {os: macos, python: 3.12}
16+
- {os: windows, python: 3.12}
1917
runs-on: ${{ matrix.os }}-${{ matrix.python == 3.7 && '22.04' || 'latest' }}
2018
defaults:
2119
run:

setup.cfg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ classifiers=
4747
Programming Language :: Python :: 3.9
4848
Programming Language :: Python :: 3.10
4949
Programming Language :: Python :: 3.11
50+
Programming Language :: Python :: 3.12
5051
Programming Language :: Python :: 3 :: Only
5152
Programming Language :: Python :: Implementation
5253
Programming Language :: Python :: Implementation :: IronPython

tox.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
[tox]
77
# deprecation warning: py{27,py2,34,35,36}
8-
envlist=py{27,34,35,36,37,38,39,310,311,py2,py3}, setup.py
8+
envlist=py{27,34,35,36,37,38,39,310,311,312,py2,py3}, setup.py
99
isolated_build=True
1010

1111
[gh-actions]
@@ -18,6 +18,7 @@ python=
1818
3.9: py39
1919
3.10: py310
2020
3.11: py311
21+
3.12: py312
2122
pypy-2.7: pypy2
2223
pypy-3.7: pypy3
2324

0 commit comments

Comments
 (0)