Skip to content

Commit a4ab885

Browse files
committed
Add support for Python 3.14
1 parent 42d07e9 commit a4ab885

File tree

4 files changed

+6
-2
lines changed

4 files changed

+6
-2
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
max-parallel: 5
1818
matrix:
1919
platform: [ubuntu-latest] #, windows-latest]
20-
python-version: [3.9, '3.10', 3.11, 3.12, 3.13]
20+
python-version: [3.9, '3.10', 3.11, 3.12, 3.13, 3.14]
2121
include:
2222
- python-version: 3.9
2323
continue-on-error: false
@@ -29,6 +29,8 @@ jobs:
2929
continue-on-error: false
3030
- python-version: 3.13
3131
continue-on-error: false
32+
- python-version: 3.14
33+
continue-on-error: false
3234
# exclude:
3335
# - platform: windows-latest
3436
# python-version: 3.9

docs/src/markdown/about/changelog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
dictionary already exists. Changes to a custom dictionary will be ignored.
77
- **NEW**: Drop support for Python 3.8.
88
- **NEW**: Add official support for Python 3.13.
9+
- **NEW**: Add official support for Python 3.14.
910

1011
## 2.10
1112

hatch_build.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ def update(self, metadata):
3434
'Programming Language :: Python :: 3.11',
3535
'Programming Language :: Python :: 3.12',
3636
'Programming Language :: Python :: 3.13',
37+
'Programming Language :: Python :: 3.14',
3738
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
3839
'Topic :: Software Development :: Libraries :: Python Modules'
3940
]

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ legacy_tox_ini = """
121121
[tox]
122122
isolated_build = true
123123
envlist =
124-
py39,py310,py311,py312,py313,lint
124+
py39,py310,py311,py312,py313,py314,lint
125125
126126
[testenv]
127127
passenv = LANG,TOX_SPELL_PATH,TOX_SPELL_REQUIRE,HOME

0 commit comments

Comments
 (0)