Skip to content

Commit 25127a1

Browse files
authored
Merge pull request #1282 from rominf/rominf-python3.13
Declare support for 3.13
2 parents 3a44b4b + 40410c4 commit 25127a1

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed

.github/workflows/ci.yml

+1
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@ jobs:
8787
3.10
8888
3.11
8989
3.12
90+
3.13
9091
pypy3.10
9192
allow-prereleases: true
9293
- name: Set up nox

CHANGELOG.rst

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
v4.22.1
2+
=======
3+
4+
* Declare support for Py3.13
5+
16
v4.22.0
27
=======
38

noxfile.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,13 @@
3535
"The Unlicense (Unlicense)",
3636
]
3737

38-
SUPPORTED = ["3.8", "3.9", "3.10", "pypy3.10", "3.11", "3.12"]
39-
LATEST = SUPPORTED[-1]
38+
SUPPORTED = ["3.8", "3.9", "3.10", "pypy3.10", "3.11", "3.12", "3.13"]
39+
LATEST_STABLE = "3.12"
4040

4141
nox.options.sessions = []
4242

4343

44-
def session(default=True, python=LATEST, **kwargs): # noqa: D103
44+
def session(default=True, python=LATEST_STABLE, **kwargs): # noqa: D103
4545
def _session(fn):
4646
if default:
4747
nox.options.sessions.append(kwargs.get("name", fn.__name__))

pyproject.toml

+1
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ classifiers = [
3131
"Programming Language :: Python :: 3.10",
3232
"Programming Language :: Python :: 3.11",
3333
"Programming Language :: Python :: 3.12",
34+
"Programming Language :: Python :: 3.13",
3435
"Programming Language :: Python :: Implementation :: CPython",
3536
"Programming Language :: Python :: Implementation :: PyPy",
3637
"Topic :: File Formats :: JSON",

0 commit comments

Comments
 (0)