Skip to content

Commit 93f8d4c

Browse files
committed
chore: cleanup the loads and bzl_library deps
1 parent 1e7946d commit 93f8d4c

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-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/BUILD.bazel

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -247,6 +247,7 @@ bzl_library(
247247
srcs = ["pypi.bzl"],
248248
deps = [
249249
":extension_bzl",
250+
"//python/private:auth_bzl",
250251
],
251252
)
252253

python/private/pypi/pip.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
"pip module extensions for use with bzlmod."
1616

17-
load("//python/private/pypi:extension.bzl", "override_tag", "pypi", "pypi_attrs", "whl_mod_attrs")
17+
load(":extension.bzl", "override_tag", "pypi", "pypi_attrs", "whl_mod_attrs")
1818

1919
def _parse_attrs():
2020
attrs = pypi_attrs()

python/private/pypi/pypi.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"pip module extensions for use with bzlmod."
1616

1717
load("//python/private:auth.bzl", "AUTH_ATTRS")
18-
load("//python/private/pypi:extension.bzl", "override_tag", "pypi_attrs", "whl_mod_attrs", _pypi = "pypi")
18+
load(":extension.bzl", "override_tag", "pypi_attrs", "whl_mod_attrs", _pypi = "pypi")
1919

2020
def _impl(module_ctx):
2121
_pypi(module_ctx)

0 commit comments

Comments
 (0)