Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
4 changes: 2 additions & 2 deletions experimental/examples/wheel/wheel_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ def test_customized_wheel(self):
self.assertEquals(record_contents, b"""\
example_customized-0.0.1.dist-info/METADATA,sha256=TeeEmokHE2NWjkaMcVJuSAq4_AXUoIad2-SLuquRmbg,372
example_customized-0.0.1.dist-info/RECORD,,
example_customized-0.0.1.dist-info/WHEEL,sha256=F01lGfVCzcXUzzQHzUkBmXAcu_TXd5zqMLrvrspncJo,85
example_customized-0.0.1.dist-info/WHEEL,sha256=sobxWSyDDkdg_rinUth-jxhXHqoNqlmNMJY3aTZn2Us,91
example_customized-0.0.1.dist-info/entry_points.txt,sha256=mEWsq4sMoyqR807QV8Z3KPocGfKvtgTo1lBFTRb6b78,150
experimental/examples/wheel/lib/data.txt,sha256=9vJKEdfLu8bZRArKLroPZJh1XKkK3qFMXiM79MBL2Sg,12
experimental/examples/wheel/lib/module_with_data.py,sha256=K_IGAq_CHcZX0HUyINpD1hqSKIEdCn58d9E9nhWF2EA,636
Expand All @@ -84,7 +84,7 @@ def test_customized_wheel(self):
""")
self.assertEquals(wheel_contents, b"""\
Wheel-Version: 1.0
Generator: wheelmaker 1.0
Generator: bazel-wheelmaker 1.0
Root-Is-Purelib: true
Tag: py3-none-any
""")
Expand Down
2 changes: 1 addition & 1 deletion experimental/python/wheel.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ tries to locate `.runfiles` directory which is not packaged in the wheel.
"_wheelmaker": attr.label(
executable = True,
cfg = "host",
default = "//experimental/rules_python:wheelmaker",
default = "//experimental/tools:wheelmaker",
),
},
_distribution_attrs,
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ def add_wheelfile(self):
# TODO(pstradomski): Support non-purelib wheels.
wheel_contents = """\
Wheel-Version: 1.0
Generator: wheelmaker 1.0
Generator: bazel-wheelmaker 1.0
Root-Is-Purelib: true
"""
for tag in self.disttags():
Expand Down