Skip to content

Commit 5e3cdf0

Browse files
committed
Fix Bazel build error introduced by 9e9c396.
PiperOrigin-RevId: 245824058
1 parent 115b63c commit 5e3cdf0

File tree

6 files changed

+0
-12
lines changed

6 files changed

+0
-12
lines changed

Diff for: adanet/BUILD

-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ py_library(
2424
py_test(
2525
name = "adanet_test",
2626
srcs = ["adanet_test.py"],
27-
python_version = "PY2",
2827
srcs_version = "PY2AND3",
2928
deps = [
3029
":adanet",

Diff for: adanet/autoensemble/BUILD

-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ py_library(
2828
py_test(
2929
name = "estimator_test",
3030
srcs = ["estimator_test.py"],
31-
python_version = "PY2",
3231
srcs_version = "PY2AND3",
3332
deps = [
3433
":estimator",

Diff for: adanet/distributed/BUILD

-2
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ py_library(
2525
py_test(
2626
name = "devices_test",
2727
srcs = ["devices_test.py"],
28-
python_version = "PY2",
2928
srcs_version = "PY2AND3",
3029
deps = [
3130
":devices",
@@ -41,7 +40,6 @@ py_library(
4140
py_test(
4241
name = "placement_test",
4342
srcs = ["placement_test.py"],
44-
python_version = "PY2",
4543
srcs_version = "PY2AND3",
4644
deps = [
4745
":placement",

Diff for: adanet/ensemble/BUILD

-2
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ py_library(
3333
py_test(
3434
name = "strategy_test",
3535
srcs = ["strategy_test.py"],
36-
python_version = "PY2",
3736
srcs_version = "PY2AND3",
3837
deps = [
3938
":ensemble",
@@ -54,7 +53,6 @@ py_library(
5453
py_test(
5554
name = "weighted_test",
5655
srcs = ["weighted_test.py"],
57-
python_version = "PY2",
5856
srcs_version = "PY2AND3",
5957
deps = [
6058
":ensemble",

Diff for: adanet/examples/BUILD

-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ py_library(
2424
py_test(
2525
name = "simple_dnn_test",
2626
srcs = ["simple_dnn_test.py"],
27-
python_version = "PY2",
2827
srcs_version = "PY2AND3",
2928
deps = [
3029
":simple_dnn",

Diff for: research/improve_nas/trainer/BUILD

-5
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ licenses(["notice"]) # Apache 2.0
33
py_binary(
44
name = "trainer",
55
srcs = ["trainer.py"],
6-
python_version = "PY2",
76
deps = [
87
":adanet_improve_nas",
98
":cifar10",
@@ -25,7 +24,6 @@ py_library(
2524
py_test(
2625
name = "improve_nas_test",
2726
srcs = ["improve_nas_test.py"],
28-
python_version = "PY2",
2927
deps = [
3028
":fake_data",
3129
":improve_nas",
@@ -47,7 +45,6 @@ py_library(
4745
py_test(
4846
name = "adanet_improve_nas_test",
4947
srcs = ["adanet_improve_nas_test.py"],
50-
python_version = "PY2",
5148
deps = [
5249
":adanet_improve_nas",
5350
":fake_data",
@@ -77,7 +74,6 @@ py_library(
7774
py_test(
7875
name = "cifar10_test",
7976
srcs = ["cifar10_test.py"],
80-
python_version = "PY2",
8177
deps = [
8278
":cifar10",
8379
],
@@ -94,7 +90,6 @@ py_library(
9490
py_test(
9591
name = "cifar100_test",
9692
srcs = ["cifar100_test.py"],
97-
python_version = "PY2",
9893
deps = [
9994
":cifar100",
10095
],

0 commit comments

Comments
 (0)