Drop Python 3.7 support (#43805)
This commit is contained in:
parent
b651f63ef0
commit
2f486543df
6 changed files with 18 additions and 36 deletions
|
@ -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}"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue