Skip to content

Commit 30e2555

Browse files
authored
Declare support for Python 3.14 (#10577)
1 parent f0b41c0 commit 30e2555

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

pyproject.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ classifiers = [
2525
"Programming Language :: Python :: 3.11",
2626
"Programming Language :: Python :: 3.12",
2727
"Programming Language :: Python :: 3.13",
28+
"Programming Language :: Python :: 3.14",
2829
"Programming Language :: Python :: Implementation :: CPython",
2930
"Programming Language :: Python :: Implementation :: PyPy",
3031
"Topic :: Software Development :: Debuggers",
@@ -223,6 +224,9 @@ tests/functional/t/type/typevar_naming_style_default.py,\
223224
tests/functional/m/member/member_checks_async.py,\
224225
"""
225226

227+
[tool.pyproject-fmt]
228+
max_supported_python = "3.14"
229+
226230
[tool.pytest.ini_options]
227231
testpaths = [ "tests" ]
228232
python_files = [ "*test_*.py" ]

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
minversion = 3.0
3-
envlist = formatting, py310, py311, py312, py313, pypy, benchmark
3+
envlist = formatting, py310, py311, py312, py313, py314, pypy, benchmark
44
skip_missing_interpreters = true
55
requires = pip >=21.3.1
66
isolated_build = true

0 commit comments

Comments
 (0)