Skip to content

Commit 90188b4

Browse files
Declare support for Python 3.14
2 parents 9a877ca + cef6082 commit 90188b4

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
@@ -23,6 +23,7 @@ classifiers = [
2323
"Programming Language :: Python :: 3.11",
2424
"Programming Language :: Python :: 3.12",
2525
"Programming Language :: Python :: 3.13",
26+
"Programming Language :: Python :: 3.14",
2627
"Programming Language :: Python :: Implementation :: CPython",
2728
"Programming Language :: Python :: Implementation :: PyPy",
2829
"Topic :: Software Development :: Libraries :: Python Modules",
@@ -82,6 +83,9 @@ lint.fixable = [
8283
]
8384
lint.unfixable = [ "RUF001" ]
8485

86+
[tool.pyproject-fmt]
87+
max_supported_python = "3.14"
88+
8589
[tool.pytest.ini_options]
8690
addopts = '-m "not acceptance"'
8791
python_files = [ "*test_*.py" ]

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py{39,310,311,312,313}
2+
envlist = py{39,310,311,312,313,314}
33
skip_missing_interpreters = true
44
isolated_build = true
55

0 commit comments

Comments
 (0)