aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/tools
diff options
context:
space:
mode:
authorGravatar Todd Wang <toddw@google.com>2018-10-03 22:24:14 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-10-03 22:28:46 -0700
commit6795491bcc0c276e27be6a9e1a4a14c019c2ba37 (patch)
tree66a3edacef5e510f01314728dd9f7f6a965137fa /tensorflow/tools
parent54cde61fbf473270ce19f8b40e9511373fbc12c7 (diff)
Pin wheel=0.31.1 in install_auditwheel.sh to work around issue
https://github.com/pypa/auditwheel/issues/102 PiperOrigin-RevId: 215685104
Diffstat (limited to 'tensorflow/tools')
-rwxr-xr-xtensorflow/tools/ci_build/install/install_auditwheel.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/tensorflow/tools/ci_build/install/install_auditwheel.sh b/tensorflow/tools/ci_build/install/install_auditwheel.sh
index e6f6124d56..0e6d98c0a8 100755
--- a/tensorflow/tools/ci_build/install/install_auditwheel.sh
+++ b/tensorflow/tools/ci_build/install/install_auditwheel.sh
@@ -18,6 +18,10 @@ set -e
sudo pip3 install auditwheel==1.5.0
+# Pin wheel==0.31.1 to work around issue
+# https://github.com/pypa/auditwheel/issues/102
+sudo pip3 install wheel==0.31.1
+
set +e
patchelf_location=$(which patchelf)
if [[ -z "$patchelf_location" ]]; then