Fix get-pip URLs for 3.7, 3.8 and Pyston (#3242)

Co-authored-by: Ivan Pozdeev <vano@mail.mipt.ru>
This commit is contained in:
David Lawson 2025-04-29 18:58:49 +01:00 committed by GitHub
parent 323af282db
commit ee40ad2253
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2434,6 +2434,12 @@ if [ -z "${GET_PIP_URL}" ]; then
3.6 | 3.6.* | pypy3.6 | pypy3.6-* )
GET_PIP_URL="https://bootstrap.pypa.io/pip/3.6/get-pip.py"
;;
3.7 | 3.7.* | pypy3.7 | pypy3.7-* )
GET_PIP_URL="https://bootstrap.pypa.io/pip/3.7/get-pip.py"
;;
3.8 | 3.8.* | pypy3.8 | pypy3.8-* | pyston* )
GET_PIP_URL="https://bootstrap.pypa.io/pip/3.8/get-pip.py"
;;
* )
GET_PIP_URL="https://bootstrap.pypa.io/get-pip.py"
;;