Skip to content

Commit

Permalink
Fix use of pypi packages by switching to release versions
Browse files Browse the repository at this point in the history
Need to switch to release versions of pypi pacakges not their
nightly ones.
  • Loading branch information
elfringham committed Aug 30, 2023
1 parent 6f7a18a commit 02a6ddb
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions tensorflow/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -1717,8 +1717,8 @@ py_library(
"//tensorflow/lite/python:lite",
"//tensorflow/lite/python/authoring",
"//tensorflow/python:no_contrib",
"@pypi_keras_nightly//:pkg",
"@pypi_tb_nightly//:pkg",
"@pypi_keras//:pkg",
"@pypi_tensorboard//:pkg",
],
)
# copybara:comment_end
2 changes: 1 addition & 1 deletion tensorflow/python/estimator/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -382,5 +382,5 @@ py_library(

alias(
name = "expect_tensorflow_estimator_installed",
actual = "@pypi_tf_estimator_nightly//:pkg",
actual = "@pypi_tensorflow_estimator//:pkg",
)
2 changes: 1 addition & 1 deletion tensorflow/python/summary/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,6 @@ tf_py_strict_test(
"//tensorflow/python/ops:summary_ops_v2",
"//tensorflow/python/platform:client_testlib",
"//tensorflow/python/training:training_util",
"@pypi_tb_nightly//:pkg",
"@pypi_tensorboard//:pkg",
],
)

0 comments on commit 02a6ddb

Please sign in to comment.