Skip to content

Commit 6d34a03

Browse files
committed
Add support for Python 3.14
1 parent 1a2c213 commit 6d34a03

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.github/workflows/push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
strategy:
99
max-parallel: 4
1010
matrix:
11-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
11+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
1212

1313
steps:
1414
- uses: actions/checkout@v4

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ classifiers = [
2424
"Programming Language :: Python :: 3.11",
2525
"Programming Language :: Python :: 3.12",
2626
"Programming Language :: Python :: 3.13",
27+
"Programming Language :: Python :: 3.14",
2728
"Programming Language :: Python :: 3 :: Only",
2829
"Topic :: Multimedia :: Graphics",
2930
"Topic :: Software Development :: Libraries :: Python Modules",

tox.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
distribute = False
3-
envlist = py{39,310,311,312,313}-{pil,png,none}
3+
envlist = py{39,310,311,312,313,314}-{pil,png,none}
44
skip_missing_interpreters = True
55

66
[gh-actions]
@@ -10,6 +10,7 @@ python =
1010
3.11: py311
1111
3.12: py312
1212
3.13: py313
13+
3.14: py314
1314

1415
[testenv]
1516
commands =

0 commit comments

Comments
 (0)