Merge pull request #4952 from hugovk/3.9-stuff

3.9: Add Trove classifier, update setup.py version check, add to tox.ini
This commit is contained in:
Andrew Murray 2020-10-07 08:40:53 +11:00 committed by GitHub
commit 877831be13
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View File

@ -37,7 +37,7 @@ TIFF_ROOT = None
ZLIB_ROOT = None
if sys.platform == "win32" and sys.version_info >= (3, 9):
if sys.platform == "win32" and sys.version_info >= (3, 10):
warnings.warn(
f"Pillow {PILLOW_VERSION} does not support Python "
f"{sys.version_info.major}.{sys.version_info.minor} and does not provide "
@ -871,6 +871,7 @@ try:
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",

View File

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