-
-
Notifications
You must be signed in to change notification settings - Fork 681
Expand file tree
/
Copy pathWORKSPACE
More file actions
32 lines (23 loc) · 743 Bytes
/
WORKSPACE
File metadata and controls
32 lines (23 loc) · 743 Bytes
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
30
31
32
local_repository(
name = "rules_python",
path = "../../..",
)
load("@rules_python//python:repositories.bzl", "py_repositories", "python_register_toolchains")
py_repositories()
# Needed for rules_cc 0.2.10
load("@bazel_features//:deps.bzl", "bazel_features_deps")
bazel_features_deps()
load("@rules_cc//cc:extensions.bzl", "compatibility_proxy_repo")
compatibility_proxy_repo()
python_register_toolchains(
name = "python39",
python_version = "3.9",
)
load("@rules_python//python:pip.bzl", "pip_parse")
pip_parse(
name = "pip_empty",
python_interpreter_target = "@python39_host//:python",
requirements_lock = "//empty:requirements.txt",
)
load("@pip_empty//:requirements.bzl", "install_deps")
install_deps()