From 7cf45b5243824fdf9f367e38627bfea6e1014f2a Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Thu, 10 Jun 2021 11:22:33 -0700 Subject: [PATCH] Update common.sh --- tensorflow/tools/ci_build/release/common.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tensorflow/tools/ci_build/release/common.sh b/tensorflow/tools/ci_build/release/common.sh index e566e470227a4b..b3049503bb3711 100644 --- a/tensorflow/tools/ci_build/release/common.sh +++ b/tensorflow/tools/ci_build/release/common.sh @@ -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' @@ -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'