Skip to content

Commit c81925c

Browse files
authored
Add support for Python 3.14 (#145)
1 parent 940787a commit c81925c

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/main.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
os: [windows-latest, macos-latest, ubuntu-latest]
1919

2020
steps:

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ classifiers = [
2121
"Programming Language :: Python :: 3.11",
2222
"Programming Language :: Python :: 3.12",
2323
"Programming Language :: Python :: 3.13",
24+
"Programming Language :: Python :: 3.14",
2425
]
2526
dynamic = [ "version" ]
2627
dependencies = [
@@ -74,4 +75,4 @@ lint.ignore = [
7475
lint.isort.required-imports = [ "from __future__ import annotations" ]
7576

7677
[tool.pyproject-fmt]
77-
max_supported_python = "3.13"
78+
max_supported_python = "3.14"

0 commit comments

Comments
 (0)