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 MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ internal_deps.install()
use_repo(
internal_deps,
"rules_python_internal",
# START: maintained by 'bazel run //tools/private:update_pip_deps'
# START: maintained by 'bazel run //tools/private/update_deps:update_pip_deps'
"pypi__build",
"pypi__click",
"pypi__colorama",
Expand All @@ -33,7 +33,7 @@ use_repo(
"pypi__tomli",
"pypi__wheel",
"pypi__zipp",
# END: maintained by 'bazel run //tools/private:update_pip_deps'
# END: maintained by 'bazel run //tools/private/update_deps:update_pip_deps'
)

# We need to do another use_extension call to expose the "pythons_hub"
Expand Down
4 changes: 2 additions & 2 deletions python/pip_install/repositories.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
load("@bazel_tools//tools/build_defs/repo:utils.bzl", "maybe")

_RULE_DEPS = [
# START: maintained by 'bazel run //tools/private:update_pip_deps'
# START: maintained by 'bazel run //tools/private/update_deps:update_pip_deps'
(
"pypi__build",
"https://files.pythonhosted.org/packages/58/91/17b00d5fac63d3dca605f1b8269ba3c65e98059e1fd99d00283e42a454f0/build-0.10.0-py3-none-any.whl",
Expand Down Expand Up @@ -94,7 +94,7 @@ _RULE_DEPS = [
"https://files.pythonhosted.org/packages/8c/08/d3006317aefe25ea79d3b76c9650afabaf6d63d1c8443b236e7405447503/zipp-3.16.2-py3-none-any.whl",
"679e51dd4403591b2d6838a48de3d283f3d188412a9782faadf845f298736ba0",
),
# END: maintained by 'bazel run //tools/private:update_pip_deps'
# END: maintained by 'bazel run //tools/private/update_deps:update_pip_deps'
]

_GENERIC_WHEEL = """\
Expand Down
4 changes: 2 additions & 2 deletions tools/private/update_deps/update_pip_deps.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,13 +111,13 @@ def main():
parser.add_argument(
"--start",
type=str,
default="# START: maintained by 'bazel run //tools/private:update_pip_deps'",
default="# START: maintained by 'bazel run //tools/private/update_deps:update_pip_deps'",
help="The text to match in a file when updating them.",
)
parser.add_argument(
"--end",
type=str,
default="# END: maintained by 'bazel run //tools/private:update_pip_deps'",
default="# END: maintained by 'bazel run //tools/private/update_deps:update_pip_deps'",
help="The text to match in a file when updating them.",
)
parser.add_argument(
Expand Down