From 6f96b26d9db356b76c37cef6de757db02bb4c0a7 Mon Sep 17 00:00:00 2001 From: Zhenyu Tan <tanzheny@google.com> Date: Wed, 4 Dec 2019 18:32:25 -0800 Subject: [PATCH] Python 3 Migration. //tensorflow/(compiler|contrib|python) PiperOrigin-RevId: 283882221 Change-Id: I8451df5bc5781efe3ea947afd7df4bd82a798469 --- tensorflow/compiler/xla/python/BUILD | 1 - tensorflow/python/feature_column/BUILD | 8 +------- 2 files changed, 1 insertion(+), 8 deletions(-) diff --git a/tensorflow/compiler/xla/python/BUILD b/tensorflow/compiler/xla/python/BUILD index 409d954748c..cdbe69d617e 100644 --- a/tensorflow/compiler/xla/python/BUILD +++ b/tensorflow/compiler/xla/python/BUILD @@ -26,7 +26,6 @@ py_test( name = "xla_client_test", srcs = ["xla_client_test.py"], main = "xla_client_test.py", - python_version = "PY3", srcs_version = "PY2AND3", tags = ["no_oss"], # TODO(phawkins): This test passes, but requires --config=monolithic. deps = [ diff --git a/tensorflow/python/feature_column/BUILD b/tensorflow/python/feature_column/BUILD index ca58ad5730b..38c3657ef58 100644 --- a/tensorflow/python/feature_column/BUILD +++ b/tensorflow/python/feature_column/BUILD @@ -110,7 +110,6 @@ tf_py_test( additional_deps = [ ":feature_column_test_main_lib", ], - python_version = "PY3", tags = [ "no_cuda_on_cpu_tap", "no_pip", @@ -124,7 +123,6 @@ tf_py_test( additional_deps = [ ":feature_column_test_main_lib", ], - python_version = "PY3", tags = ["no_pip"], ) @@ -161,7 +159,6 @@ tf_py_test( name = "feature_column_v2_test", srcs = ["feature_column_v2_test.py"], additional_deps = [":feature_column_v2_test_main_lib"], - python_version = "PY3", shard_count = 5, tags = [ "no_cuda_on_cpu_tap", @@ -176,7 +173,6 @@ tf_py_test( additional_deps = [ ":feature_column_v2_test_main_lib", ], - python_version = "PY3", tags = ["no_pip"], ) @@ -239,13 +235,12 @@ tf_py_test( "//tensorflow/python:sparse_tensor", "//tensorflow/python:training", ], - python_version = "PY3", ) py_test( name = "sequence_feature_column_integration_test", srcs = ["sequence_feature_column_integration_test.py"], - python_version = "PY3", + python_version = "PY2", srcs_version = "PY2AND3", tags = ["no_pip"], deps = [ @@ -268,5 +263,4 @@ tf_py_test( "//tensorflow/python:client_testlib", "//tensorflow/python:util", ], - python_version = "PY3", )