Skip to content

Commit fa92c9c

Browse files
authored
Declare Python 3.14 support (#554)
* Declare Python 3.14 support * CI: only test with supported Python versions
1 parent d8d6556 commit fa92c9c

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
matrix:
1212
# Only test supported Python versions:
1313
# https://endoflife.date/python
14-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "pypy3.9"]
14+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14", "pypy3.9"]
1515

1616
steps:
1717
- name: Checkout code

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ classifiers = [
3838
"Programming Language :: Python :: 3.11",
3939
"Programming Language :: Python :: 3.12",
4040
"Programming Language :: Python :: 3.13",
41+
"Programming Language :: Python :: 3.14",
4142
"Programming Language :: Python :: Implementation :: CPython",
4243
"Programming Language :: Python :: Implementation :: PyPy",
4344
]

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tox]
22
skipdist = true
33

4-
envlist = py{39,310,311,312,313,py39}-test
4+
envlist = py{310,311,312,313,314,py39}-test
55

66
[pytest]
77
norecursedirs = .eggs build tmp* vips-*

0 commit comments

Comments
 (0)