aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/python/estimator/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/python/estimator/BUILD')
-rw-r--r--tensorflow/python/estimator/BUILD16
1 files changed, 12 insertions, 4 deletions
diff --git a/tensorflow/python/estimator/BUILD b/tensorflow/python/estimator/BUILD
index 8ee38d35cc..fd46163050 100644
--- a/tensorflow/python/estimator/BUILD
+++ b/tensorflow/python/estimator/BUILD
@@ -40,9 +40,9 @@ py_library(
srcs_version = "PY2AND3",
deps = [
":gc",
+ ":metric_keys",
+ ":util",
"//tensorflow:tensorflow_py_no_contrib",
- "//tensorflow/python/estimator:metric_keys",
- "//tensorflow/python/estimator:util",
],
)
@@ -683,9 +683,9 @@ py_test(
],
deps = [
":keras",
+ ":numpy_io",
+ ":run_config",
"//tensorflow:tensorflow_py_no_contrib",
- "//tensorflow/python/estimator:numpy_io",
- "//tensorflow/python/estimator:run_config",
"//third_party/py/numpy",
],
)
@@ -707,6 +707,14 @@ py_library(
)
py_library(
+ name = "expect_h5py_installed",
+ # This is a dummy rule used as a numpy dependency in open-source.
+ # We expect h5py to already be installed on the system, e.g. via
+ # `pip install h5py'
+ visibility = ["//visibility:public"],
+)
+
+py_library(
name = "expect_six_installed",
# This is a dummy rule used as a numpy dependency in open-source.
# We expect six to already be installed on the system, e.g. via