Fix Windows ARM64 Python Bindings Issue

This commit is contained in:
tsomanna_QCOM
2026-03-18 09:41:27 +05:30
committed by Thomas Krijnen
parent f2e2e324b1
commit 18c035ea77
+1 -1
View File
@@ -114,7 +114,7 @@ def archive_python_packages() -> None:
deps_path = REPO_PATH / "_deps" deps_path = REPO_PATH / "_deps"
python_versions: list[str] = [] python_versions: list[str] = []
for d in deps_path.iterdir(): for d in deps_path.iterdir():
if d.is_dir() and d.name.startswith("python."): if d.is_dir() and (d.name.startswith("python.") or d.name.startswith("pythonarm64.")):
python_version = d.name.partition(".")[2] python_version = d.name.partition(".")[2]
python_path = d / "tools" python_path = d / "tools"
archive_python_package(python_version, python_path) archive_python_package(python_version, python_path)