Skip to content

Commit e1c4488

Browse files
committed
Test support for Python 3.12.
1 parent 95034d2 commit e1c4488

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
fail-fast: false
1010
max-parallel: 5
1111
matrix:
12-
python-version: ['3.8', '3.9', '3.10', '3.11']
12+
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
1313

1414
steps:
1515
- uses: actions/checkout@v2

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@
3737
'Programming Language :: Python :: 3.9',
3838
'Programming Language :: Python :: 3.10',
3939
'Programming Language :: Python :: 3.11',
40+
'Programming Language :: Python :: 3.12',
4041
'Topic :: Software Development :: Libraries :: Python Modules'
4142
],
4243
)

tox.ini

+2
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,15 @@ envlist =
99
py{38,39}-{4.2},
1010
py310-{4.2,5.0,5.1,main},
1111
py311-{4.2,5.0,5.1,main},
12+
py312-{4.2,5.0,5.1,main},
1213

1314
[gh-actions]
1415
python =
1516
3.8: py38, black, flake8, isort, pypi
1617
3.9: py39
1718
3.10: py310
1819
3.11: py311
20+
3.12: py312
1921

2022
[testenv]
2123
usedevelop = true

0 commit comments

Comments
 (0)