File tree Expand file tree Collapse file tree 3 files changed +8
-8
lines changed
tools/private/update_deps Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -55,12 +55,6 @@ filegroup(
55
55
visibility = ["//tools/private/update_deps:__pkg__" ],
56
56
)
57
57
58
- filegroup (
59
- name = "requirements_txt" ,
60
- srcs = ["tools/requirements.txt" ],
61
- visibility = ["//tools/private/update_deps:__pkg__" ],
62
- )
63
-
64
58
filegroup (
65
59
name = "bzl" ,
66
60
srcs = glob (["*.bzl" ]),
Original file line number Diff line number Diff line change @@ -41,6 +41,12 @@ filegroup(
41
41
],
42
42
)
43
43
44
+ filegroup (
45
+ name = "requirements_txt" ,
46
+ srcs = ["requirements.txt" ],
47
+ visibility = ["//tools/private/update_deps:__pkg__" ],
48
+ )
49
+
44
50
# Keep sorted by library name and keep the files named by the main symbol they export
45
51
46
52
bzl_library (
Original file line number Diff line number Diff line change @@ -50,11 +50,11 @@ py_binary(
50
50
name = "update_pip_deps" ,
51
51
srcs = ["update_pip_deps.py" ],
52
52
data = [
53
- "//python/private/pypi:deps_bzl " ,
53
+ "//python/private/pypi:deps.bzl " ,
54
54
"//python/private/pypi:requirements_txt" ,
55
55
],
56
56
env = {
57
- "DEPS_BZL" : "$(rlocationpath //python/private/pypi:deps_bzl )" ,
57
+ "DEPS_BZL" : "$(rlocationpath //python/private/pypi:deps.bzl )" ,
58
58
"REQUIREMENTS_TXT" : "$(rlocationpath //python/private/pypi:requirements_txt)" ,
59
59
},
60
60
imports = ["../../.." ],
You can’t perform that action at this time.
0 commit comments