From 22919770355b1b7d8f4c5a20327898e881aa11cb Mon Sep 17 00:00:00 2001 From: Jeremy Lau Date: Tue, 2 Oct 2018 17:09:45 -0700 Subject: Pin wheel=0.31.1 to work around issue https://github.com/pypa/auditwheel/issues/102 PiperOrigin-RevId: 215486669 --- tensorflow/tools/ci_build/install/install_pip_packages.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'tensorflow/tools') 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 -- cgit v1.2.3