()
| 111 | |
| 112 | |
| 113 | def archive_python_packages() -> None: |
| 114 | deps_path = REPO_PATH / "_deps" |
| 115 | python_versions: list[str] = [] |
| 116 | for d in deps_path.iterdir(): |
| 117 | if d.is_dir() and (d.name.startswith("python.") or d.name.startswith("pythonarm64.")): |
| 118 | python_version = d.name.partition(".")[2] |
| 119 | python_path = d / "tools" |
| 120 | archive_python_package(python_version, python_path) |
| 121 | python_versions.append(d.name.partition(".")[2]) |
| 122 | |
| 123 | |
| 124 | def main() -> None: |
no test coverage detected