Skip to content

Commit 6071ea7

Browse files
authored
Add support for Python 3.12 (#807)
1 parent a37d7a2 commit 6071ea7

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
name: deploy
1515

1616
steps:
17-
- uses: "actions/checkout@v3"
17+
- uses: "actions/checkout@v4"
1818
- uses: "actions/setup-python@v4"
1919
with:
2020
python-version: 3.8

.github/workflows/test-suite.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,14 @@ jobs:
1414

1515
strategy:
1616
matrix:
17-
python-version: ["3.8", "3.9", "3.10", "3.11"]
17+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
1818

1919
steps:
20-
- uses: "actions/checkout@v3"
20+
- uses: "actions/checkout@v4"
2121
- uses: "actions/setup-python@v4"
2222
with:
2323
python-version: "${{ matrix.python-version }}"
24+
allow-prereleases: true
2425
- name: "Install dependencies"
2526
run: "scripts/install"
2627
- name: "Run linting checks"

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ classifiers = [
2525
"Programming Language :: Python :: 3.9",
2626
"Programming Language :: Python :: 3.10",
2727
"Programming Language :: Python :: 3.11",
28+
"Programming Language :: Python :: 3.12",
2829
"Topic :: Internet :: WWW/HTTP",
2930
]
3031
dependencies = [

0 commit comments

Comments
 (0)