Skip to content

Commit 9bf512c

Browse files
hugovkandialbrecht
authored andcommitted
Add support for Python 3.12
1 parent c0a8ee6 commit 9bf512c

3 files changed

Lines changed: 4 additions & 1 deletion

File tree

.github/workflows/python-app.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
strategy:
2020
matrix:
2121
py:
22-
- "3.12.0-beta.4"
22+
- "3.12"
2323
- "3.11"
2424
- "3.10"
2525
- "3.9"
@@ -36,6 +36,7 @@ jobs:
3636
uses: actions/setup-python@v4
3737
with:
3838
python-version: ${{ matrix.py }}
39+
allow-prereleases: true
3940
check-latest: true
4041
- name: Install dependencies
4142
run: |

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ classifiers = [
2222
"Programming Language :: Python :: 3.9",
2323
"Programming Language :: Python :: 3.10",
2424
"Programming Language :: Python :: 3.11",
25+
"Programming Language :: Python :: 3.12",
2526
"Programming Language :: Python :: Implementation :: CPython",
2627
"Programming Language :: Python :: Implementation :: PyPy",
2728
"Topic :: Database",

tox.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ envlist =
77
py39
88
py310
99
py311
10+
py312
1011
flake8
1112

1213
[testenv]

0 commit comments

Comments
 (0)