Test on Python 3.11, drop Python 3.7-3.8 (#2982)

This commit is contained in:
Raphael Michel
2023-01-30 17:54:19 +01:00
committed by GitHub
parent a7f9e100d2
commit 00d901b04b
8 changed files with 26 additions and 24 deletions

View File

@@ -53,7 +53,7 @@ except:
raise
CURRENT_PYTHON = sys.version_info[:2]
REQUIRED_PYTHON = (3, 6)
REQUIRED_PYTHON = (3, 9)
if CURRENT_PYTHON < REQUIRED_PYTHON:
sys.stderr.write("""
==========================
@@ -150,9 +150,9 @@ setup(
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Environment :: Web Environment',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Framework :: Django :: 3.2'
],