Skip to content

Commit 4e60225

Browse files
authored
Test with Python 3.11 (#401)
1 parent e8f26b6 commit 4e60225

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
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.7", "3.8", "3.9", "3.10", "pypy3.9"]
14+
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "pypy3.9"]
1515

1616
steps:
1717
- name: Checkout code

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ start up and is typically ~20% slower in execution. You can find out how
3535
pyvips installed with ``pip show pyvips``.
3636

3737
This binding passes the vips test suite cleanly and with no leaks under
38-
python2.7 - python3.10, pypy and pypy3 on Windows, macOS and Linux.
38+
python2.7 - python3.11, pypy and pypy3 on Windows, macOS and Linux.
3939

4040
How it works
4141
------------

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@
4141
'Programming Language :: Python :: 3.8',
4242
'Programming Language :: Python :: 3.9',
4343
'Programming Language :: Python :: 3.10',
44+
'Programming Language :: Python :: 3.11',
4445
'Programming Language :: Python :: Implementation :: PyPy',
4546
'Programming Language :: Python :: Implementation :: CPython',
4647
]

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{37,38,39,310,py39}-test
4+
envlist = py{37,38,39,310,311,py39}-test
55

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

0 commit comments

Comments
 (0)