Skip to content

Commit 267672b

Browse files
authored
feat: support Python 3.14 (#897)
Signed-off-by: Jan Kowalleck <jan.kowalleck@gmail.com>
1 parent d8a24b7 commit 267672b

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.github/workflows/python.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ jobs:
132132
include:
133133
- # test with the latest dependencies
134134
os: ubuntu-latest
135-
python-version: '3.13'
135+
python-version: '3.14'
136136
toxenv-factors: '-current'
137137
- # test with the lowest dependencies
138138
os: ubuntu-latest
@@ -170,7 +170,8 @@ jobs:
170170
- macos-latest
171171
- windows-latest
172172
python-version:
173-
- "3.13" # highest supported
173+
- "3.14" # highest supported
174+
- "3.13"
174175
- "3.12"
175176
- "3.11"
176177
- "3.10"
@@ -286,7 +287,7 @@ jobs:
286287
# see https://github.com/actions/setup-python
287288
uses: actions/setup-python@v6
288289
with:
289-
python-version: '>=3.9 <=3.13' # supported version range
290+
python-version: '>=3.9 <=3.14' # supported version range
290291
- name: Validate Python Environment
291292
shell: python
292293
run: |

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ classifiers = [
5252
'Programming Language :: Python :: 3.11',
5353
'Programming Language :: Python :: 3.12',
5454
'Programming Language :: Python :: 3.13',
55+
'Programming Language :: Python :: 3.14',
5556
'Typing :: Typed',
5657
]
5758
keywords = [

0 commit comments

Comments
 (0)