Drop Python 3.7 support (#43805)

This commit is contained in:
Franck Nijhof 2021-01-01 13:47:01 +01:00 committed by GitHub
parent b651f63ef0
commit 2f486543df
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 18 additions and 36 deletions

View file

@ -4,10 +4,10 @@ MINOR_VERSION = 2
PATCH_VERSION = "0.dev0"
__short_version__ = f"{MAJOR_VERSION}.{MINOR_VERSION}"
__version__ = f"{__short_version__}.{PATCH_VERSION}"
REQUIRED_PYTHON_VER = (3, 7, 1)
REQUIRED_PYTHON_VER = (3, 8, 0)
# Truthy date string triggers showing related deprecation warning messages.
REQUIRED_NEXT_PYTHON_VER = (3, 8, 0)
REQUIRED_NEXT_PYTHON_DATE = "December 7, 2020"
REQUIRED_NEXT_PYTHON_VER = (3, 9, 0)
REQUIRED_NEXT_PYTHON_DATE = ""
# Format for platform files
PLATFORM_FORMAT = "{platform}.{domain}"