mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-07 20:31:01 -05:00
Also fix Python 3.4 and 3.5 which do not support f-strings
This commit is contained in:
parent
189afa88c6
commit
93025e9aa4
1 changed files with 6 additions and 0 deletions
|
@ -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"
|
||||
;;
|
||||
|
|
Loading…
Reference in a new issue