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", )