Merge pull request #6441 from hugovk/add-3.11

3.11: Add Trove classifier and to tox.ini and update setup.py version check
This commit is contained in:
Andrew Murray 2022-07-16 18:21:31 +10:00 committed by GitHub
commit 864e86fb20
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 2 deletions

View File

@ -16,6 +16,7 @@ classifiers =
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
Topic :: Multimedia :: Graphics

View File

@ -38,7 +38,7 @@ TIFF_ROOT = None
ZLIB_ROOT = None
FUZZING_BUILD = "LIB_FUZZING_ENGINE" in os.environ
if sys.platform == "win32" and sys.version_info >= (3, 11):
if sys.platform == "win32" and sys.version_info >= (3, 12):
import atexit
atexit.register(

View File

@ -6,7 +6,7 @@
[tox]
envlist =
lint
py{37,38,39,310,py3}
py{37,38,39,310,311,py3}
minversion = 1.9
[testenv]