Skip to content

Commit 4f6f24f

Browse files
committed
remove further attributes and sort them for better docs
1 parent f7e65fe commit 4f6f24f

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

examples/bzlmod/MODULE.bazel.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

python/private/pypi/extension.bzl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -580,6 +580,8 @@ code will be re-evaluated when any of files in the default changes.
580580
),
581581
}, **ATTRS)
582582

583+
attrs.pop("use_hub_alias_dependencies")
584+
583585
return attrs
584586

585587
def whl_mod_attrs():

python/private/pypi/pip.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def _parse_attrs():
3030
doc = "Ignored, please use `pypi.install` instead",
3131
),
3232
})
33-
return attrs
33+
return dict(sorted(attrs.items()))
3434

3535
pip = module_extension(
3636
doc = """\

python/private/pypi/pypi.bzl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,8 @@ find in case extra indexes are specified.
9393

9494
# These attributes are not used:
9595
attrs.pop("download_only")
96-
return attrs
96+
97+
return dict(sorted(attrs.items()))
9798

9899
pypi = module_extension(
99100
doc = """\

0 commit comments

Comments
 (0)