Remove 3.9 support from CI and tests (#15401)

This commit is contained in:
Sebastian Rittau
2026-02-09 12:59:13 +01:00
committed by GitHub
parent df016285e3
commit 2ce70534c3
8 changed files with 9 additions and 9 deletions
+1 -1
View File
@@ -14,7 +14,7 @@ from ts_utils.utils import colored, print_error
ReturnCode: TypeAlias = int
SUPPORTED_PLATFORMS = ("linux", "darwin", "win32")
SUPPORTED_VERSIONS = ("3.14", "3.13", "3.12", "3.11", "3.10", "3.9")
SUPPORTED_VERSIONS = ("3.14", "3.13", "3.12", "3.11", "3.10")
LOWEST_SUPPORTED_VERSION = min(SUPPORTED_VERSIONS, key=lambda x: int(x.split(".")[1]))
DIRECTORIES_TO_TEST = ("scripts", "tests")
EMPTY: list[str] = []