Skip to content

Commit c2e921d

Browse files
committed
Declare support for 3.12.
1 parent d16c86b commit c2e921d

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

.github/workflows/ci.yml

+8-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,14 @@ jobs:
5959
- name: Set up Python
6060
uses: actions/setup-python@v4
6161
with:
62-
python-version: "3.x"
62+
python-version: |
63+
3.8
64+
3.9
65+
3.10
66+
3.11
67+
3.12
68+
pypy3.10
69+
allow-prereleases: true
6370
- name: Set up nox
6471
uses: wntrblm/[email protected]
6572
- name: Run nox

noxfile.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def _session(fn):
2121
return _session
2222

2323

24-
@session(python=["3.8", "3.9", "3.10", "3.11", "pypy3"])
24+
@session(python=["3.8", "3.9", "3.10", "3.11", "3.12", "pypy3"])
2525
def tests(session):
2626
session.install("pytest", ROOT)
2727
session.run("pytest", *session.posargs, PACKAGE)

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ classifiers = [
2222
"License :: OSI Approved :: MIT License",
2323
"Operating System :: OS Independent",
2424
"Programming Language :: Python",
25-
"Programming Language :: Python :: 3",
2625
"Programming Language :: Python :: 3.8",
2726
"Programming Language :: Python :: 3.9",
2827
"Programming Language :: Python :: 3.10",
2928
"Programming Language :: Python :: 3.11",
29+
"Programming Language :: Python :: 3.12",
3030
"Programming Language :: Python :: Implementation :: CPython",
3131
"Programming Language :: Python :: Implementation :: PyPy",
3232
"Framework :: Sphinx :: Extension",

0 commit comments

Comments
 (0)