From ee40ad2253c83b317825dba88947bbaa62de1e34 Mon Sep 17 00:00:00 2001 From: David Lawson Date: Tue, 29 Apr 2025 18:58:49 +0100 Subject: [PATCH] Fix get-pip URLs for 3.7, 3.8 and Pyston (#3242) Co-authored-by: Ivan Pozdeev --- plugins/python-build/bin/python-build | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/plugins/python-build/bin/python-build b/plugins/python-build/bin/python-build index de698ce4..03f03ec4 100755 --- a/plugins/python-build/bin/python-build +++ b/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" ;;