Drop support for Python 3.6, part 1 (#8250)

* Document that typeshed support 3.7+.
* Don't run tests on Python 3.6.
* Remove Python 3.6 allow lists.
* Merge common allowlist items.

Part of #6189
This commit is contained in:
Sebastian Rittau
2022-07-07 14:42:02 +02:00
committed by GitHub
parent 9ccf4589a0
commit 9a5c865034
27 changed files with 52 additions and 411 deletions

View File

@@ -28,7 +28,7 @@ from typing_extensions import Annotated, TypeAlias
import tomli
from colors import colored, print_error, print_success_msg
SUPPORTED_VERSIONS = [(3, 11), (3, 10), (3, 9), (3, 8), (3, 7), (3, 6), (2, 7)]
SUPPORTED_VERSIONS = [(3, 11), (3, 10), (3, 9), (3, 8), (3, 7), (2, 7)]
SUPPORTED_PLATFORMS = frozenset({"linux", "win32", "darwin"})
TYPESHED_DIRECTORIES = frozenset({"stdlib", "stubs", "tests", "test_cases", "scripts"})