Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build: unpin tf-nightly version #1761

Merged
merged 2 commits into from
Jan 17, 2019
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,9 +96,7 @@ install:
pip install -I tensorflow
;;
NIGHTLY)
# TODO(@wchargin): Unpin once tensorflow/tensorflow#24867 is merged:
# https://github.com/tensorflow/tensorflow/pull/24867
pip install -I tf-nightly==1.13.0.dev20190104
pip install -I tf-nightly
;;
*)
pip install -I tensorflow=="${TF}"
Expand Down
4 changes: 1 addition & 3 deletions tensorboard/pip_package/build_pip_package.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,7 @@ while [ "$#" -gt 0 ]; do
done

smoke() {
# TODO(@wchargin): Unpin once tensorflow/tensorflow#24867 is merged:
# https://github.com/tensorflow/tensorflow/pull/24867
TF_PACKAGE=tf-nightly==1.13.0.dev20190104
TF_PACKAGE=tf-nightly
if [ -n "$TF_VERSION" ]; then
TF_PACKAGE="tensorflow==${TF_VERSION}"
fi
Expand Down