aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/tools
diff options
context:
space:
mode:
authorGravatar Jeremy Lau <lauj@google.com>2018-10-02 17:09:45 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-10-02 17:14:13 -0700
commit22919770355b1b7d8f4c5a20327898e881aa11cb (patch)
tree8502701236cb3088a55972b6ee1258a8dee5bf03 /tensorflow/tools
parente4188461aee1d614a14f17fe2abaf2a9a94886d9 (diff)
Pin wheel=0.31.1 to work around issue
https://github.com/pypa/auditwheel/issues/102 PiperOrigin-RevId: 215486669
Diffstat (limited to 'tensorflow/tools')
-rwxr-xr-xtensorflow/tools/ci_build/install/install_pip_packages.sh6
1 files changed, 4 insertions, 2 deletions
diff --git a/tensorflow/tools/ci_build/install/install_pip_packages.sh b/tensorflow/tools/ci_build/install/install_pip_packages.sh
index b90f3f3b97..7f293e8604 100755
--- a/tensorflow/tools/ci_build/install/install_pip_packages.sh
+++ b/tensorflow/tools/ci_build/install/install_pip_packages.sh
@@ -24,8 +24,10 @@ easy_install3 -U pip==9.0.3
# Install pip packages from whl files to avoid the time-consuming process of
# building from source.
-pip2 install wheel
-pip3 install wheel
+# Pin wheel==0.31.1 to work around issue
+# https://github.com/pypa/auditwheel/issues/102
+pip2 install wheel==0.31.1
+pip3 install wheel==0.31.1
pip2 install virtualenv
pip3 install virtualenv