MCPcopy Create free account
hub / github.com/IfcOpenShell/IfcOpenShell / archive_python_packages

Function archive_python_packages

win/build-all-win.py:113–121  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

111
112
113def 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
124def main() -> None:

Callers 1

mainFunction · 0.85

Calls 2

archive_python_packageFunction · 0.85
appendMethod · 0.45

Tested by

no test coverage detected