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

Don't force reinstall TB #50203

Merged
merged 1 commit into from Jun 10, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 4 additions & 4 deletions tensorflow/tools/ci_build/release/common.sh
Expand Up @@ -140,8 +140,8 @@ function install_ubuntu_16_pip_deps {
"${PIP_CMD}" install --user 'gast == 0.3.3'
# Finally, install tensorboard and estimator
# Note that here we want the latest version that matches (b/156523241)
"${PIP_CMD}" install --user --upgrade --force-reinstall 'tb-nightly ~= 2.4.0.a'
"${PIP_CMD}" install --user --upgrade --force-reinstall 'tensorflow_estimator ~= 2.3.0'
"${PIP_CMD}" install --user --upgrade 'tb-nightly ~= 2.4.0.a'
"${PIP_CMD}" install --user --upgrade 'tensorflow_estimator ~= 2.3.0'
# Test dependencies
"${PIP_CMD}" install --user 'grpcio ~= 1.32.0'
"${PIP_CMD}" install --user 'portpicker ~= 1.3.1'
Expand Down Expand Up @@ -196,8 +196,8 @@ function install_macos_pip_deps {
${PIP_CMD} install --user 'gast == 0.3.3'
# Finally, install tensorboard and estimator
# Note that here we want the latest version that matches (b/156523241)
${PIP_CMD} install --user --upgrade --force-reinstall 'tb-nightly ~= 2.4.0.a'
${PIP_CMD} install --user --upgrade --force-reinstall 'tensorflow_estimator ~= 2.3.0'
${PIP_CMD} install --user --upgrade 'tb-nightly ~= 2.4.0.a'
${PIP_CMD} install --user --upgrade 'tensorflow_estimator ~= 2.3.0'
# Test dependencies
${PIP_CMD} install --user 'grpcio ~= 1.32.0'
${PIP_CMD} install --user 'portpicker ~= 1.3.1'
Expand Down