Merge "Update get-pip URL to the new location"

This commit is contained in:
Jenkins 2014-05-28 19:18:31 +00:00 committed by Gerrit Code Review
commit 54007bcad2
3 changed files with 3 additions and 5 deletions

View File

@ -17,7 +17,7 @@
# under the License.
# Install pip using get-pip
PIP_GET_PIP_URL=https://raw.githubusercontent.com/pypa/pip/master/contrib/get-pip.py
PIP_GET_PIP_URL=https://bootstrap.pypa.io/get-pip.py
curl -O $PIP_GET_PIP_URL || wget $PIP_GET_PIP_URL
python get-pip.py

View File

@ -157,9 +157,7 @@ def main():
# cache get-pip, because upstream network connection fails more
# often than you might imagine.
download(
'https://raw.githubusercontent.com/pypa/pip/master/contrib/get-pip.py',
'get-pip.py')
download('https://bootstrap.pypa.io/get-pip.py', 'get-pip.py')
if __name__ == '__main__':

View File

@ -23,7 +23,7 @@ for p in python-pip python3-pip ; do
done
# install pip using get-pip
PIP_GET_PIP_URL=https://raw.githubusercontent.com/pypa/pip/master/contrib/get-pip.py
PIP_GET_PIP_URL=https://bootstrap.pypa.io/get-pip.py
if [ ! -f get-pip.py ] ; then
curl -O $PIP_GET_PIP_URL || wget $PIP_GET_PIP_URL
fi