Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix setuptools version to avoid a bad release. #19655

Merged
merged 1 commit into from
May 31, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 3 additions & 0 deletions tensorflow/tools/ci_build/install/install_pip_packages.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ set -e
easy_install -U pip==9.0.3
easy_install3 -U pip==9.0.3

pip2 install --upgrade setuptools==39.1.0
pip3 install --upgrade setuptools==39.1.0

# Install pip packages from whl files to avoid the time-consuming process of
# building from source.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ if [[ -z $pip35_version ]]; then
fi

set -e
pip3.5 install --upgrade setuptools
pip3.5 install --upgrade setuptools==39.1.0
pip3.5 install --upgrade pip

pip3.5 install --upgrade virtualenv
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ cd Python-3.6.1
make altinstall
ln -s /usr/local/bin/pip3.6 /usr/local/bin/pip3

pip3 install --upgrade setuptools
pip3 install --upgrade setuptools==39.1.0
pip3 install --upgrade pip

pip3 install --upgrade virtualenv
Expand Down