Skip to content

Commit 17da7bd

Browse files
authored
Declare Python 3.13 support (#514)
* Declare Python 3.13 support * CI: only test with supported Python versions
1 parent 55aaf34 commit 17da7bd

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.github/workflows/ci.yml

+1-1
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.8", "3.9", "3.10", "3.11", "3.12", "pypy3.9"]
14+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "pypy3.9"]
1515

1616
steps:
1717
- name: Checkout code

pyproject.toml

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

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tox]
22
skipdist = true
33

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

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

0 commit comments

Comments
 (0)