We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 58c69f9 commit 1c5b825Copy full SHA for 1c5b825
1 file changed
win/build-all-win.py
@@ -93,7 +93,7 @@ def archive_python_package(python_version: str, python_path: Path) -> None:
93
file.unlink()
94
95
zip_name = ZIP_TEMPLATE.format(package_name=f"ifcopenshell-python-{python_version_major_minor}")
96
- with ZipFile(OUTPUT_DIR / zip_name, "w") as zipf:
+ with ZipFile(OUTPUT_DIR / zip_name, "w", compression=zipfile.ZIP_DEFLATED) as zipf:
97
for file in package_path.rglob("*"):
98
arcname = file.relative_to(site_packages)
99
zipf.write(file, arcname=arcname)
0 commit comments