diff --git a/plugins/python-build/bin/python-build b/plugins/python-build/bin/python-build index 8a1be844..d7c41d55 100755 --- a/plugins/python-build/bin/python-build +++ b/plugins/python-build/bin/python-build @@ -2099,6 +2099,12 @@ if [ -z "${GET_PIP_URL}" ]; then 3.3 | 3.3.* ) GET_PIP_URL="https://bootstrap.pypa.io/3.3/get-pip.py" ;; + 3.4 | 3.4.* ) + GET_PIP_URL="https://bootstrap.pypa.io/3.4/get-pip.py" + ;; + 3.5 | 3.5.* ) + GET_PIP_URL="https://bootstrap.pypa.io/3.5/get-pip.py" + ;; * ) GET_PIP_URL="https://bootstrap.pypa.io/get-pip.py" ;;