Skip to content

Commit 4288541

Browse files
committed
fixup targets for dependency updating
1 parent a10c493 commit 4288541

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

python/pip_install/BUILD.bazel

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -55,12 +55,6 @@ filegroup(
5555
visibility = ["//tools/private/update_deps:__pkg__"],
5656
)
5757

58-
filegroup(
59-
name = "requirements_txt",
60-
srcs = ["tools/requirements.txt"],
61-
visibility = ["//tools/private/update_deps:__pkg__"],
62-
)
63-
6458
filegroup(
6559
name = "bzl",
6660
srcs = glob(["*.bzl"]),

python/private/pypi/BUILD.bazel

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,12 @@ filegroup(
4141
],
4242
)
4343

44+
filegroup(
45+
name = "requirements_txt",
46+
srcs = ["requirements.txt"],
47+
visibility = ["//tools/private/update_deps:__pkg__"],
48+
)
49+
4450
# Keep sorted by library name and keep the files named by the main symbol they export
4551

4652
bzl_library(

tools/private/update_deps/BUILD.bazel

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,11 +50,11 @@ py_binary(
5050
name = "update_pip_deps",
5151
srcs = ["update_pip_deps.py"],
5252
data = [
53-
"//python/private/pypi:deps_bzl",
53+
"//python/private/pypi:deps.bzl",
5454
"//python/private/pypi:requirements_txt",
5555
],
5656
env = {
57-
"DEPS_BZL": "$(rlocationpath //python/private/pypi:deps_bzl)",
57+
"DEPS_BZL": "$(rlocationpath //python/private/pypi:deps.bzl)",
5858
"REQUIREMENTS_TXT": "$(rlocationpath //python/private/pypi:requirements_txt)",
5959
},
6060
imports = ["../../.."],

0 commit comments

Comments
 (0)