Drop support for Python 3.7 (#11234)

This commit is contained in:
Sebastian Rittau
2024-01-04 14:48:44 +01:00
committed by GitHub
parent 262d73c90c
commit 4e5f7a7142
10 changed files with 8 additions and 48 deletions

View File

@@ -41,7 +41,7 @@ VENV_DIR = ".venv"
TYPESHED = "typeshed"
SUPPORTED_PLATFORMS = ["linux", "darwin", "win32"]
SUPPORTED_VERSIONS = ["3.12", "3.11", "3.10", "3.9", "3.8", "3.7"]
SUPPORTED_VERSIONS = ["3.12", "3.11", "3.10", "3.9", "3.8"]
def package_with_test_cases(package_name: str) -> PackageInfo: