Skip to content

Commit 88ce18d

Browse files
author
Jonathon Belotti
committed
Merge branch 'master' into jonathon/namespace-pkgs-support
2 parents 8bff1cf + 944b158 commit 88ce18d

File tree

4 files changed

+2
-2
lines changed

4 files changed

+2
-2
lines changed

src/__init__.pyc

-199 Bytes
Binary file not shown.

src/extract_wheels.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ def extract_wheel(whl, directory, extras):
8080
# Python libraries cannot have hyphen https://github.com/bazelbuild/bazel/issues/9171
8181
[
8282
'"//%s"' % sanitise_name(d)
83-
for d in whl.dependencies(extras_requested=extras)
83+
for d in sorted(whl.dependencies(extras_requested=extras))
8484
]
8585
),
8686
)
@@ -126,7 +126,7 @@ def requirement(name):
126126
name_key = name.replace("-", "_").replace(".", "_").lower()
127127
return "{repo}//pypi__" + name_key
128128
""".format(
129-
requirement_labels=",".join(targets), repo=args.repo
129+
requirement_labels=",".join(sorted(targets)), repo=args.repo
130130
)
131131
)
132132

src/extract_wheels.pyc

-2.95 KB
Binary file not shown.

src/wheel.pyc

-2.79 KB
Binary file not shown.

0 commit comments

Comments
 (0)