forked from bazel-contrib/rules_python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBUILD.bazel
29 lines (26 loc) · 923 Bytes
/
BUILD.bazel
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
load("@rules_multirun//:defs.bzl", "multirun")
# This file has various targets that are using dev-only dependencies that our users should not ideally see.
multirun(
name = "requirements.update",
commands = [
"//tools/publish:{}.update".format(r)
for r in [
"requirements_universal",
"requirements_darwin",
"requirements_windows",
"requirements_linux",
]
] + [
"//docs:requirements.update",
],
tags = ["manual"],
)
# NOTE: The requirements for the pip dependencies may sometimes break the build
# process due to how `pip-compile` works (i.e. it sometimes needs to build
# wheels to resolve the `requirements.in` file. Hence we do not lump the
# target with the other targets above.
alias(
name = "whl_library_requirements.update",
actual = "//tools/private/update_deps:update_pip_deps",
tags = ["manual"],
)