Skip to content

Commit 69d85c2

Browse files
committed
builders/wheel: Ensure dist-info is written deterministically
1 parent e368e7a commit 69d85c2

File tree

1 file changed

+1
-1
lines changed
  • src/poetry/core/masonry/builders

1 file changed

+1
-1
lines changed

src/poetry/core/masonry/builders/wheel.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ def _build(self, wheel: zipfile.ZipFile) -> None:
190190

191191
lib = libs[0]
192192

193-
for pkg in lib.glob("**/*"):
193+
for pkg in sorted(lib.glob("**/*")):
194194
if pkg.is_dir() or self.is_excluded(pkg):
195195
continue
196196

0 commit comments

Comments
 (0)