Skip to content

Commit fba1556

Browse files
authored
Add support for python 3.14 (#379)
1 parent 43056dd commit fba1556

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/run_unit_tests.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,10 @@ jobs:
1515
runs-on: ubuntu-latest
1616
strategy:
1717
matrix:
18-
python-version: ["3.10", "3.11", "3.12", "3.13"]
18+
# NB no 3.12 because an issue with coverage makes it extremely slow
19+
# and the likelihood of 3.12-specific bugs is considered low at this
20+
# stage
21+
python-version: ["3.10", "3.11", "3.13", "3.14"]
1922
dependencies: [".", "'.[libjpeg]'"]
2023

2124
env:

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ classifiers = [
2929
"Programming Language :: Python :: 3.11",
3030
"Programming Language :: Python :: 3.12",
3131
"Programming Language :: Python :: 3.13",
32+
"Programming Language :: Python :: 3.14",
3233
"Topic :: Multimedia :: Graphics",
3334
"Topic :: Scientific/Engineering :: Information Analysis",
3435
]

0 commit comments

Comments
 (0)