Skip to content

Commit 5aa69f9

Browse files
authored
Merge pull request pypa#180 from pypa/pyup-update-pip-9.0.3-to-10.0.0
Update pip to 10.0.0
2 parents cca7fba + 2cb77db commit 5aa69f9

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

docker/build_scripts/build_utils.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,10 @@ function do_cpython_build {
4545
if [ -e ${prefix}/bin/python3 ]; then
4646
ln -s python3 ${prefix}/bin/python
4747
fi
48-
${prefix}/bin/python get-pip.py
48+
# --force-reinstall is to work around:
49+
# https://github.com/pypa/pip/issues/5220
50+
# https://github.com/pypa/get-pip/issues/19
51+
${prefix}/bin/python get-pip.py --force-reinstall
4952
if [ -e ${prefix}/bin/pip3 ] && [ ! -e ${prefix}/bin/pip ]; then
5053
ln -s pip3 ${prefix}/bin/pip
5154
fi

docker/build_scripts/requirements.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# pip requirements for all cpythons
22
# NOTE: pip has GPG signatures; could download and verify independently.
3-
pip==9.0.3 \
4-
--hash=sha256:c3ede34530e0e0b2381e7363aded78e0c33291654937e7373032fda04e8803e5 \
5-
--hash=sha256:7bf48f9a693be1d58f49f7af7e0ae9fe29fd671cde8a55e6edca3581c4ef5796
3+
pip==10.0.0 \
4+
--hash=sha256:86a60a96d85e329962a9e6f6af612cbc11106293dbc83f119802b5bee9874cf3 \
5+
--hash=sha256:f05a3eeea64bce94e85cc6671d679473d66288a4d37c3fcf983584954096b34f
66
wheel==0.30.0 \
77
--hash=sha256:e721e53864f084f956f40f96124a74da0631ac13fbbd1ba99e8e2b5e9cafdf64 \
88
--hash=sha256:9515fe0a94e823fd90b08d22de45d7bde57c90edce705b22f5e1ecf7e1b653c8

0 commit comments

Comments
 (0)