Skip to content

Commit 0df5d3b

Browse files
authored
Add support for Python 3.14 (#40)
2 parents db63d80 + 165ae70 commit 0df5d3b

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
fail-fast: false
1616
matrix:
17-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
17+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
1818

1919
steps:
2020
- uses: actions/checkout@v4

pyproject.toml

Lines changed: 2 additions & 1 deletion
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
]
2930
dynamic = [
3031
"version",
@@ -49,4 +50,4 @@ version-file = "src/blurb/_version.py"
4950
local_scheme = "no-local-version"
5051

5152
[tool.pyproject-fmt]
52-
max_supported_python = "3.13"
53+
max_supported_python = "3.14"

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
requires =
33
tox>=4.2
44
env_list =
5-
py{313, 312, 311, 310, 39}
5+
py{314, 313, 312, 311, 310, 39}
66

77
[testenv]
88
extras =

0 commit comments

Comments
 (0)