Skip to content

Commit b83eeb8

Browse files
committed
Add support for Python 3.14
1 parent 0cff624 commit b83eeb8

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.github/workflows/check.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ jobs:
2020
fail-fast: false
2121
matrix:
2222
py:
23-
- "pypy3.10" # ahead to start it earlier because takes longer
23+
- "pypy3.11" # ahead to start it earlier because takes longer
24+
- "3.14"
2425
- "3.13"
2526
- "3.12"
2627
- "3.11"

pyproject.toml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ classifiers = [
3737
"Programming Language :: Python :: 3.11",
3838
"Programming Language :: Python :: 3.12",
3939
"Programming Language :: Python :: 3.13",
40+
"Programming Language :: Python :: 3.14",
4041
"Programming Language :: Python :: Implementation :: CPython",
4142
"Programming Language :: Python :: Implementation :: PyPy",
4243
"Topic :: Software Development :: Libraries :: Python Modules",
@@ -96,12 +97,13 @@ installer = "uv"
9697
description = "Run the test suite"
9798
matrix = [
9899
{ python = [
100+
"3.14",
99101
"3.13",
100102
"3.12",
101103
"3.11",
102104
"3.10",
103105
"3.9",
104-
"pypy3.10",
106+
"pypy3.11",
105107
] },
106108
]
107109
features = [
@@ -242,7 +244,7 @@ count = true
242244
quiet-level = 3
243245

244246
[tool.pyproject-fmt]
245-
max_supported_python = "3.13"
247+
max_supported_python = "3.14"
246248

247249
[tool.coverage]
248250
html.show_contexts = true

0 commit comments

Comments
 (0)