Skip to content

Commit

Permalink
Declare Python 3.13 support (#514)
Browse files Browse the repository at this point in the history
* Declare Python 3.13 support

* CI: only test with supported Python versions
  • Loading branch information
kleisauke authored Oct 25, 2024
1 parent 55aaf34 commit 17da7bd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
matrix:
# Only test supported Python versions:
# https://endoflife.date/python
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "pypy3.9"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "pypy3.9"]

steps:
- name: Checkout code
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tox]
skipdist = true

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

[pytest]
norecursedirs = .eggs build tmp* vips-*
Expand Down

0 comments on commit 17da7bd

Please sign in to comment.