8000
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 f45782e commit ebf26a6Copy full SHA for ebf26a6
setup.py
@@ -148,7 +148,9 @@ def _build_wheel(
148
extractall(zip, f"driver/{wheel_bundle['zip_name']}")
149
wheel_location = without_platform + wheel_bundle["wheel"]
150
shutil.copy(base_wheel_location, wheel_location)
151
- with zipfile.ZipFile(wheel_location, "a") as zip:
+ with zipfile.ZipFile(
152
+ wheel_location, mode="a", compression=zipfile.ZIP_DEFLATED
153
+ ) as zip:
154
driver_root = os.path.abspath(f"driver/{wheel_bundle['zip_name']}")
155
for dir_path, _, files in os.walk(driver_root):
156
for file in files:
0 commit comments