Skip to content

Commit 4bb0535

Browse files
committed
Support py 3.12
1 parent afd2831 commit 4bb0535

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

.github/workflows/tox.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
py: ['3.8', '3.9', '3.10', '3.11']
18+
py: ['3.8', '3.9', '3.10', '3.11', '3.12']
1919

2020
steps:
2121
- uses: actions/checkout@v3

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ classifiers = [
2626
"Programming Language :: Python :: 3.9",
2727
"Programming Language :: Python :: 3.10",
2828
"Programming Language :: Python :: 3.11",
29+
"Programming Language :: Python :: 3.12",
2930
]
3031
requires-python = ">=3.8"
3132
dependencies = [

tox.ini

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ envlist =
44
py39
55
py310
66
py311
7+
py312
78
mypy
89
fmt-check
910
skip_missing_interpreters = True
@@ -48,5 +49,6 @@ commands =
4849
python =
4950
3.8 = py38, mypy
5051
3.9 = py39, mypy
51-
3.10 = py310, mypy, fmt-check
52-
3.11 = py311
52+
3.10 = py310, mypy
53+
3.11 = py311, mypy
54+
3.12 = py312, mypy, fmt-check

0 commit comments

Comments
 (0)