Skip to content

Commit cc9d5f1

Browse files
authored
Update get-pip.py URLs in pyenv-virtualenv (#426)
1 parent 017ea60 commit cc9d5f1

File tree

1 file changed

+12
-3
lines changed

1 file changed

+12
-3
lines changed

bin/pyenv-virtualenv

+12-3
Original file line numberDiff line numberDiff line change
@@ -485,13 +485,22 @@ if [ -z "${GET_PIP_URL}" ]; then
485485
GET_PIP_URL="https://bootstrap.pypa.io/pip/2.7/get-pip.py"
486486
;;
487487
3.2 | 3.2.* )
488-
GET_PIP_URL="https://bootstrap.pypa.io/3.2/get-pip.py"
488+
GET_PIP_URL="https://bootstrap.pypa.io/pip/3.2/get-pip.py"
489489
;;
490490
3.3 | 3.3.* )
491-
GET_PIP_URL="https://bootstrap.pypa.io/3.3/get-pip.py"
491+
GET_PIP_URL="https://bootstrap.pypa.io/pip/3.3/get-pip.py"
492+
;;
493+
3.4 | 3.4.* )
494+
GET_PIP_URL="https://bootstrap.pypa.io/pip/3.4/get-pip.py"
495+
;;
496+
3.5 | 3.5.* )
497+
GET_PIP_URL="https://bootstrap.pypa.io/pip/3.5/get-pip.py"
498+
;;
499+
3.6 | 3.6.* )
500+
GET_PIP_URL="https://bootstrap.pypa.io/pip/3.6/get-pip.py"
492501
;;
493502
* )
494-
GET_PIP_URL="https://bootstrap.pypa.io/get-pip.py"
503+
GET_PIP_URL="https://bootstrap.pypa.io/pip/get-pip.py"
495504
;;
496505
esac
497506
fi

0 commit comments

Comments
 (0)