Skip to content

Commit

Permalink
Merge pull request #6441 from hugovk/add-3.11
Browse files Browse the repository at this point in the history
3.11: Add Trove classifier and to tox.ini and update setup.py version check
  • Loading branch information
radarhere committed Jul 16, 2022
2 parents ada4112 + 6801a25 commit 864e86f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def get_version():
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(
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
[tox]
envlist =
lint
py{37,38,39,310,py3}
py{37,38,39,310,311,py3}
minversion = 1.9

[testenv]
Expand Down

0 comments on commit 864e86f

Please sign in to comment.