From 08037807f210f47eada89f6fd7402a10c2291861 Mon Sep 17 00:00:00 2001 From: Nicholas McDonnell <50747025+mcdonnnj@users.noreply.github.com> Date: Sat, 26 Feb 2022 01:34:47 -0500 Subject: [PATCH] Add the get-pip.py URL for Python 3.6 --- bin/pyenv-virtualenv | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bin/pyenv-virtualenv b/bin/pyenv-virtualenv index 2cb127b..9c4e953 100755 --- a/bin/pyenv-virtualenv +++ b/bin/pyenv-virtualenv @@ -496,6 +496,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" ;;