Commit 1c4d3326 authored by Godefroid Chapelle's avatar Godefroid Chapelle

Update get-pip for 3.6

parent 30450318
......@@ -60,6 +60,8 @@ def main(args):
GET_PIP_URL = 'https://bootstrap.pypa.io/pip/2.7/get-pip.py'
elif (sys.version_info.major, sys.version_info.minor) == (3, 5):
GET_PIP_URL = 'https://bootstrap.pypa.io/pip/3.5/get-pip.py'
elif (sys.version_info.major, sys.version_info.minor) == (3, 6):
GET_PIP_URL = 'https://bootstrap.pypa.io/pip/3.6/get-pip.py'
else:
GET_PIP_URL = 'https://bootstrap.pypa.io/pip/get-pip.py'
with open(get_pip, 'wb') as f:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment