From e12f23480d65cb67031f211ae37eddf6ffe63f91 Mon Sep 17 00:00:00 2001 From: Nicholas McDonnell <50747025+mcdonnnj@users.noreply.github.com> Date: Sat, 26 Feb 2022 01:34:09 -0500 Subject: [PATCH] Add the get-pip.py URL for Python 3.5 --- bin/pyenv-virtualenv | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bin/pyenv-virtualenv b/bin/pyenv-virtualenv index cda3a9d..2cb127b 100755 --- a/bin/pyenv-virtualenv +++ b/bin/pyenv-virtualenv @@ -493,6 +493,9 @@ if [ -z "${GET_PIP_URL}" ]; then 3.4 | 3.4.* ) GET_PIP_URL="https://bootstrap.pypa.io/pip/3.4/get-pip.py" ;; + 3.5 | 3.5.* ) + GET_PIP_URL="https://bootstrap.pypa.io/pip/3.5/get-pip.py" + ;; * ) GET_PIP_URL="https://bootstrap.pypa.io/get-pip.py" ;;