Skip to content

Commit fef5e1f

Browse files
committed
feat: support Python 3.14
Signed-off-by: Jan Kowalleck <[email protected]>
1 parent 11c0717 commit fef5e1f

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.github/workflows/python.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ jobs:
122122
fail-fast: false
123123
matrix:
124124
include:
125-
- python-version: '3.13' # latest
125+
- python-version: '3.14' # latest
126126
os: ubuntu-latest
127127
toxenv-factors: '-current'
128128
- python-version: '3.9' # lowest
@@ -210,7 +210,8 @@ jobs:
210210
- macos-latest
211211
- windows-latest
212212
python-version:
213-
- "3.13" # highest supported
213+
- "3.14" # highest supported
214+
- "3.13"
214215
- "3.12"
215216
- "3.11"
216217
- "3.10"

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ classifiers = [
5757
"Programming Language :: Python :: 3.11",
5858
"Programming Language :: Python :: 3.12",
5959
"Programming Language :: Python :: 3.13",
60+
"Programming Language :: Python :: 3.14",
6061
"Typing :: Typed"
6162
]
6263
[tool.poetry.urls]

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ minversion = 4.0
88
envlist =
99
flake8
1010
mypy-{current,lowest}
11-
py{313,312,311,310,39}
11+
py{314,313,312,311,310,39}
1212
bandit
1313
deptry
1414
skip_missing_interpreters = True

0 commit comments

Comments
 (0)