瀏覽代碼

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

Co-authored-by: Ivan Pozdeev <vano@mail.mipt.ru>
pull/3245/head
David Lawson 1 年之前
committed by GitHub
父節點
當前提交
ee40ad2253
沒有發現已知的金鑰在資料庫的簽署中 GPG 金鑰 ID: B5690EEEBB952194
共有 1 個檔案被更改,包括 6 行新增0 行删除
  1. +6
    -0
      plugins/python-build/bin/python-build

+ 6
- 0
plugins/python-build/bin/python-build 查看文件

@ -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"
;;

Loading…
取消
儲存