Skip to content

Commit

Permalink
scripts/build_utils.sh: install pip==19.3.1
Browse files Browse the repository at this point in the history
to address the issue of pypa/pip#7620 when
installing pip 10 with pip 20

Signed-off-by: Kefu Chai <[email protected]>
  • Loading branch information
tchaikov committed Apr 21, 2020
1 parent 0acd8b1 commit 2596423
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/build_utils.sh
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ install_python_packages_no_binary () {
# versions of pip that break with newer versions of pkg_resources that come
# with the virtualenv. Doing an initial upgrade with easy_install
# circumvents the problem
$VENV/easy_install --upgrade pip
$VENV/easy_install --upgrade pip==19.3.1
$VENV/pip install "pip==10.0.0"

echo "Updating setuptools"
Expand Down Expand Up @@ -164,7 +164,7 @@ install_python_packages () {
# versions of pip that break with newer versions of pkg_resources that come
# with the virtualenv. Doing an initial upgrade with easy_install
# circumvents the problem
$VENV/easy_install --upgrade pip
$VENV/easy_install --upgrade pip==19.3.1
$VENV/pip install "pip==10.0.0"

echo "Updating setuptools"
Expand Down

0 comments on commit 2596423

Please sign in to comment.