Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ END_UNRELEASED_TEMPLATE

{#v0-0-0-changed}
### Changed
* Nothing changed.
* (py_wheel) py_wheel always creates zip64-capable wheel zips

{#v0-0-0-fixed}
### Fixed
Expand Down
2 changes: 1 addition & 1 deletion tools/wheelmaker.py
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ def arcname_from(name):
hash = hashlib.sha256()
size = 0
with open(real_filename, "rb") as fsrc:
with self.open(zinfo, "w") as fdst:
with self.open(zinfo, "w", force_zip64=True) as fdst:
while True:
block = fsrc.read(2**20)
if not block:
Expand Down