From 5528d5e5a51f9606d451d40cc6fa91b490f266c0 Mon Sep 17 00:00:00 2001 From: Andrej730 Date: Tue, 15 Sep 2026 10:12:31 +0500 Subject: [PATCH] build-all-win: remove redundant `python_versions` list A dead code since the commit when it was introduced (51bf4951b) --- win/build-all-win.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/win/build-all-win.py b/win/build-all-win.py index 0a0fe9b267..eed8e02c3f 100644 --- a/win/build-all-win.py +++ b/win/build-all-win.py @@ -309,13 +309,11 @@ def archive_python_package(python_version: str, python_path: Path) -> None: def archive_python_packages() -> None: deps_path = REPO_PATH / "_deps" - python_versions: list[str] = [] for d in deps_path.iterdir(): if d.is_dir() and (d.name.startswith("python.") or d.name.startswith("pythonarm64.")): python_version = d.name.partition(".")[2] python_path = d / "tools" archive_python_package(python_version, python_path) - python_versions.append(d.name.partition(".")[2]) def main() -> None: