Skip to content

Commit

Permalink
builders/wheel: Ensure dist-info is written deterministically
Browse files Browse the repository at this point in the history
  • Loading branch information
radoering committed Jan 7, 2023
1 parent e368e7a commit 69d85c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/poetry/core/masonry/builders/wheel.py
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ def _build(self, wheel: zipfile.ZipFile) -> None:

lib = libs[0]

for pkg in lib.glob("**/*"):
for pkg in sorted(lib.glob("**/*")):
if pkg.is_dir() or self.is_excluded(pkg):
continue

Expand Down

0 comments on commit 69d85c2

Please sign in to comment.