File tree Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -45,7 +45,10 @@ function do_cpython_build {
45
45
if [ -e ${prefix} /bin/python3 ]; then
46
46
ln -s python3 ${prefix} /bin/python
47
47
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
49
52
if [ -e ${prefix} /bin/pip3 ] && [ ! -e ${prefix} /bin/pip ]; then
50
53
ln -s pip3 ${prefix} /bin/pip
51
54
fi
Original file line number Diff line number Diff line change 1
1
# pip requirements for all cpythons
2
2
# 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
6
6
wheel == 0.30.0 \
7
7
--hash =sha256:e721e53864f084f956f40f96124a74da0631ac13fbbd1ba99e8e2b5e9cafdf64 \
8
8
--hash =sha256:9515fe0a94e823fd90b08d22de45d7bde57c90edce705b22f5e1ecf7e1b653c8
You can’t perform that action at this time.
0 commit comments