Drop Python 3.9 support as it reached EOL

This commit is contained in:
Andrej730
2025-12-19 18:01:05 +05:00
parent eba4405310
commit 4db9d60a97
13 changed files with 21 additions and 32 deletions
+1 -1
View File
@@ -11,7 +11,7 @@ from zipfile import ZipFile
assert Path.cwd() == Path(__file__).parent, "Run this script from the 'win' directory."
PYTHON_VERSIONS = ["3.9.13", "3.10.3", "3.11.8", "3.12.1", "3.13.0", "3.14.0"]
PYTHON_VERSIONS = ["3.10.3", "3.11.8", "3.12.1", "3.13.0", "3.14.0"]
REPO_PATH = Path(__file__).parent.parent
REPO_WIN = REPO_PATH / "win"
VERSION = (REPO_PATH / "VERSION").read_text().strip()