From 70c6cfcb00861709b6dd1de58b2c350945f1bffc Mon Sep 17 00:00:00 2001 From: Yong Tang Date: Sat, 7 Sep 2019 11:48:40 +0000 Subject: [PATCH] Removed `python -m pip install -q grpcio-tools` as this is not needed anymore Signed-off-by: Yong Tang --- .travis/bazel.build.sh | 4 +--- configure.sh | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.travis/bazel.build.sh b/.travis/bazel.build.sh index 0f7934cf4..1f452b7f4 100755 --- a/.travis/bazel.build.sh +++ b/.travis/bazel.build.sh @@ -30,12 +30,10 @@ if [[ $(uname) == "Linux" ]]; then python get-pip.py -q python -m pip --version fi -python -m pip install h5py==2.9.0 +python -m pip install -q h5py==2.9.0 python -m pip install -q ${TENSORFLOW_INSTALL} -python -m pip install -q grpcio-tools - python third_party/tf/configure.py cat .bazelrc diff --git a/configure.sh b/configure.sh index 7d2c88888..9e9e0bf9a 100755 --- a/configure.sh +++ b/configure.sh @@ -15,10 +15,10 @@ # ============================================================================== rm -f .bazelrc -python -m pip install h5py==2.9.0 if python -c "import tensorflow as tf" &> /dev/null; then echo 'using installed tensorflow' else python -m pip install $(python setup.py --package-version) fi +python -m pip install h5py==2.9.0 python third_party/tf/configure.py