From ae44d30f58a263d86048c89e8d8978cf80d3888a Mon Sep 17 00:00:00 2001 From: Nicholas McDonnell <50747025+mcdonnnj@users.noreply.github.com> Date: Sat, 26 Feb 2022 01:32:17 -0500 Subject: [PATCH] Update the get-pip.py URL for Python 3.3 --- bin/pyenv-virtualenv | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/pyenv-virtualenv b/bin/pyenv-virtualenv index 7441a2e..23e7b8b 100755 --- a/bin/pyenv-virtualenv +++ b/bin/pyenv-virtualenv @@ -488,7 +488,7 @@ if [ -z "${GET_PIP_URL}" ]; then GET_PIP_URL="https://bootstrap.pypa.io/pip/3.2/get-pip.py" ;; 3.3 | 3.3.* ) - GET_PIP_URL="https://bootstrap.pypa.io/3.3/get-pip.py" + GET_PIP_URL="https://bootstrap.pypa.io/pip/3.3/get-pip.py" ;; * ) GET_PIP_URL="https://bootstrap.pypa.io/get-pip.py"