Add Trove classifier, update setup.py version check, add to tox.ini

This commit is contained in:
Hugo van Kemenade 2020-10-06 19:16:49 +03:00
parent c841501c34
commit 6f7231eb5a
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]