From 9c1d180a2233c2f6bf30082cdf5f1a7f61f2c560 Mon Sep 17 00:00:00 2001 From: Shanqing Cai Date: Tue, 15 Aug 2017 12:44:54 -0700 Subject: [PATCH] TFE: Add missing srcs_version to BUILD file PiperOrigin-RevId: 165344756 --- tensorflow/python/eager/BUILD | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tensorflow/python/eager/BUILD b/tensorflow/python/eager/BUILD index cda86099f74..81022a32dd4 100644 --- a/tensorflow/python/eager/BUILD +++ b/tensorflow/python/eager/BUILD @@ -252,6 +252,7 @@ py_library( py_library( name = "tensor_node", srcs = ["tensor_node.py"], + srcs_version = "PY2AND3", visibility = ["//tensorflow:internal"], deps = [ ":context", @@ -269,6 +270,7 @@ py_library( py_library( name = "backprop", srcs = ["backprop.py"], + srcs_version = "PY2AND3", visibility = ["//tensorflow:internal"], deps = [ "//tensorflow/python:array_ops", -- GitLab