Skip to content

Commit 471ec0c

Browse files
committed
Add support for Python 3.14
1 parent 7652bba commit 471ec0c

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
fail-fast: false
1616
matrix:
17-
python-version: ["pypy3.10", "3.9", "3.10", "3.11", "3.12", "3.13"]
17+
python-version: ["pypy3.10", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
1818
os: [windows-latest, macos-latest, ubuntu-latest]
1919

2020
steps:

pyproject.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ classifiers = [
3030
"Programming Language :: Python :: 3.11",
3131
"Programming Language :: Python :: 3.12",
3232
"Programming Language :: Python :: 3.13",
33+
"Programming Language :: Python :: 3.14",
3334
"Programming Language :: Python :: Implementation :: CPython",
3435
"Programming Language :: Python :: Implementation :: PyPy",
3536
]
@@ -97,7 +98,7 @@ lint.isort.known-first-party = [ "norwegianblue" ]
9798
lint.isort.required-imports = [ "from __future__ import annotations" ]
9899

99100
[tool.pyproject-fmt]
100-
max_supported_python = "3.13"
101+
max_supported_python = "3.14"
101102

102103
[tool.pytest.ini_options]
103104
addopts = "--color=yes"

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ env_list =
66
cli
77
lint
88
pins
9-
py{py3, 313, 312, 311, 310, 39}
9+
py{py3, 314, 313, 312, 311, 310, 39}
1010

1111
[testenv]
1212
extras =

0 commit comments

Comments
 (0)