Skip to content

Commit 627e662

Browse files
committed
Declare support for 3.12.
1 parent 54d506c commit 627e662

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,14 @@ jobs:
6565
- name: Set up Python
6666
uses: actions/setup-python@v4
6767
with:
68-
python-version: "3.x"
68+
python-version: |
69+
3.8
70+
3.9
71+
3.10
72+
3.11
73+
3.12
74+
pypy3.10
75+
allow-prereleases: true
6976
- name: Set up nox
7077
uses: wntrblm/[email protected]
7178
- name: Run nox

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def _session(fn):
2222
return _session
2323

2424

25-
@session(python=["3.8", "3.9", "3.10", "3.11", "pypy3"])
25+
@session(python=["3.8", "3.9", "3.10", "3.11", "3.12", "pypy3"])
2626
def tests(session):
2727
session.install("-r", ROOT / "test-requirements.txt")
2828

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
"Programming Language :: Python :: Implementation :: CPython",
3031
"Programming Language :: Python :: Implementation :: PyPy",
3132
"Topic :: File Formats :: JSON",

0 commit comments

Comments
 (0)