Merge branch 'v0.8.0' into ifcmax/initial-refresh

This commit is contained in:
Josef Wienerroither
2026-03-22 09:20:00 +01:00
141 changed files with 1730 additions and 796 deletions
+1 -1
View File
@@ -114,7 +114,7 @@ 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."):
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)