Skip to content

Commit

Permalink
Comment out dependencies on seaborn, which requires pandas and hence …
Browse files Browse the repository at this point in the history
…breaks

python3.4 compatibility (as of
pandas-dev/pandas@8756f55).

PiperOrigin-RevId: 193124160
  • Loading branch information
csuter authored and Copybara-Service committed Apr 17, 2018
1 parent 16ff17d commit bdeb7bd
Showing 1 changed file with 18 additions and 16 deletions.
34 changes: 18 additions & 16 deletions tensorflow_probability/examples/weight_uncertainty/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -86,19 +86,21 @@ py_test(
],
)

py_test(
name = "mnist_deep_nn_test",
size = "small",
srcs = [
"mnist_deep_nn.py",
],
args = [
"--fake_data",
"--max_steps=5",
],
main = "mnist_deep_nn.py",
srcs_version = "PY2AND3",
deps = [
":mnist_deep_nn",
],
)
# TODO(b/78137893): Clean this up. For now, we disable tests until
# seaborn/python3.4 dependency issues resolved.
#py_test(
# name = "mnist_deep_nn_test",
# size = "small",
# srcs = [
# "mnist_deep_nn.py",
# ],
# args = [
# "--fake_data",
# "--max_steps=5",
# ],
# main = "mnist_deep_nn.py",
# srcs_version = "PY2AND3",
# deps = [
# ":mnist_deep_nn",
# ],
#)

0 comments on commit bdeb7bd

Please sign in to comment.