Skip to content

Commit dc4831b

Browse files
committed
Add support for Python 3.13
1 parent 456b01d commit dc4831b

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"]
11+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
1212

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

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ classifiers = [
2323
"Programming Language :: Python :: 3.10",
2424
"Programming Language :: Python :: 3.11",
2525
"Programming Language :: Python :: 3.12",
26+
"Programming Language :: Python :: 3.13",
2627
"Programming Language :: Python :: 3 :: Only",
2728
"Topic :: Multimedia :: Graphics",
2829
"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}-{pil,png,none}
3+
envlist = py{39,310,311,312,313}-{pil,png,none}
44
skip_missing_interpreters = True
55

66
[gh-actions]
@@ -9,6 +9,7 @@ python =
99
3.10: py310
1010
3.11: py311
1111
3.12: py312
12+
3.13: py313
1213

1314
[testenv]
1415
commands =

0 commit comments

Comments
 (0)