Skip to content

Commit 7b23f65

Browse files
committed
Add Python 3.14 support.
1 parent a10263a commit 7b23f65

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.github/workflows/test-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
fail-fast: false
2020
matrix:
2121
platform: [ubuntu-latest, macos-latest, windows-latest]
22-
python-version: ['3.10', '3.11', '3.12', '3.13']
22+
python-version: ['3.10', '3.11', '3.12', '3.13', '3.14']
2323

2424
steps:
2525

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ classifiers = [
4444
"Programming Language :: Python :: 3.11",
4545
"Programming Language :: Python :: 3.12",
4646
"Programming Language :: Python :: 3.13",
47+
"Programming Language :: Python :: 3.14",
4748
"Programming Language :: Python :: Implementation :: PyPy",
4849
"Topic :: Text Processing :: Fonts",
4950
"Topic :: Multimedia :: Graphics",

tox.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
[tox]
22
envlist =
3-
py{310,311,312,313},
3+
py{310,311,312,313,314},
44

55
[testenv]
66
basepython =
77
py310: python3.10
88
py311: python3.11
99
py312: python3.12
1010
py313: python3.13
11+
py314: python3.14
1112

1213
passenv = CI,GITHUB_WORKFLOW
1314

0 commit comments

Comments
 (0)