aboutsummaryrefslogtreecommitdiffhomepage
path: root/WORKSPACE
diff options
context:
space:
mode:
authorGravatar Michael Case <mikecase@google.com>2018-09-21 18:56:21 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-09-21 18:59:56 -0700
commit7229d08f0b25e24e6dd4833a94a27f404b27a350 (patch)
treea42dcae0372769059c7e3e88ef6b50944c46c5a9 /WORKSPACE
parenta2fd40adcc714f18167acd9650e5442d4afd6a01 (diff)
Experiment using Bazel's pip_install rule to install keras_applications.
PiperOrigin-RevId: 214076591
Diffstat (limited to 'WORKSPACE')
-rw-r--r--WORKSPACE20
1 files changed, 18 insertions, 2 deletions
diff --git a/WORKSPACE b/WORKSPACE
index 17961829a6..11605871f3 100644
--- a/WORKSPACE
+++ b/WORKSPACE
@@ -9,11 +9,27 @@ http_archive(
"https://github.com/bazelbuild/rules_closure/archive/dbb96841cc0a5fb2664c37822803b06dab20c7d1.tar.gz", # 2018-04-13
],
)
-
load("@io_bazel_rules_closure//closure:defs.bzl", "closure_repositories")
-
closure_repositories()
+http_archive(
+ name = "io_bazel_rules_python",
+ strip_prefix = "rules_python-8b5d0683a7d878b28fffe464779c8a53659fc645",
+ urls = [
+ "https://github.com/bazelbuild/rules_python/archive/8b5d0683a7d878b28fffe464779c8a53659fc645.tar.gz",
+ ],
+)
+load("@io_bazel_rules_python//python:pip.bzl", "pip_repositories")
+pip_repositories()
+
+load("@io_bazel_rules_python//python:pip.bzl", "pip_import")
+pip_import(
+ name = "pip_deps",
+ requirements = "//tensorflow:requirements.txt",
+)
+load("@pip_deps//:requirements.bzl", "pip_install")
+pip_install()
+
# We must check the bazel version before trying to parse any other BUILD
# files, in case the parsing of those build files depends on the bazel
# version we require here.