From a98fee0555627a8760667d9f6a9a8e94a4ce5395 Mon Sep 17 00:00:00 2001 From: Pedro Fonini Date: Wed, 2 Feb 2022 21:20:52 -0300 Subject: [PATCH] python-build: add URL for get-pip for Python 3.6 (#2238) --- plugins/python-build/bin/python-build | 3 +++ 1 file changed, 3 insertions(+) diff --git a/plugins/python-build/bin/python-build b/plugins/python-build/bin/python-build index 7e3834f0..39886b1b 100755 --- a/plugins/python-build/bin/python-build +++ b/plugins/python-build/bin/python-build @@ -2204,6 +2204,9 @@ if [ -z "${GET_PIP_URL}" ]; then 3.5 | 3.5.* ) GET_PIP_URL="https://bootstrap.pypa.io/pip/3.5/get-pip.py" ;; + 3.6 | 3.6.* ) + GET_PIP_URL="https://bootstrap.pypa.io/pip/3.6/get-pip.py" + ;; * ) GET_PIP_URL="https://bootstrap.pypa.io/get-pip.py" ;;