Skip to content

Commit 81b5614

Browse files
committed
feat: Official Python 3.12 support.
1 parent b7f3f3c commit 81b5614

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
15-
python-version: ['3.8', '3.9', '3.10', '3.11']
15+
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
1616
steps:
1717
- uses: actions/checkout@v3
1818
- name: Set up Python ${{ matrix.python-version }}

tox.ini

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
[tox]
22
min_version = 4.0
3-
env_list = format, lint, py{38,39,310,311}-pydantic{1,2}-{test,type}
3+
env_list = format, lint, py{38,39,310,311,312}-pydantic{1,2}-{test,type}
44

55
[gh-actions]
66
python =
77
3.8: py38
88
3.9: py39
99
3.10: py310
10-
3.11: format, lint, py311
10+
3.11: py311
11+
3.12: format, lint, py312
1112

1213
[testenv]
1314
labels = core

0 commit comments

Comments
 (0)