diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2014-05-17 12:57:38 -0700 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2014-05-17 12:57:38 -0700 |
commit | eecfdfad986c33fc32f98ae69809f1307bfcfdb2 (patch) | |
tree | f7c99b8b6d01a51566325cc5ccf0b4ee75f27938 | |
parent | a741aad3bd7d6347b9816025cb4905558c2c71c6 (diff) | |
download | cryptography-eecfdfad986c33fc32f98ae69809f1307bfcfdb2.tar.gz cryptography-eecfdfad986c33fc32f98ae69809f1307bfcfdb2.tar.bz2 cryptography-eecfdfad986c33fc32f98ae69809f1307bfcfdb2.zip |
Use the new official URL for downloading get-pip.py
-rwxr-xr-x | .travis/install.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.travis/install.sh b/.travis/install.sh index e5cdbba9..e028033e 100755 --- a/.travis/install.sh +++ b/.travis/install.sh @@ -32,12 +32,12 @@ if [[ "$(uname -s)" == "Darwin" ]]; then if which pyenv > /dev/null; then eval "$(pyenv init -)"; fi case "${TOX_ENV}" in py26) - curl -O https://raw.githubusercontent.com/pypa/pip/master/contrib/get-pip.py + curl -O https://bootstrap.pypa.io/get-pip.py sudo python get-pip.py sudo pip install virtualenv ;; py27) - curl -O https://raw.githubusercontent.com/pypa/pip/master/contrib/get-pip.py + curl -O https://bootstrap.pypa.io/get-pip.py sudo python get-pip.py sudo pip install virtualenv ;; @@ -62,7 +62,7 @@ if [[ "$(uname -s)" == "Darwin" ]]; then pip install virtualenv ;; docs) - curl -O https://raw.githubusercontent.com/pypa/pip/master/contrib/get-pip.py + curl -O https://bootstrap.pypa.io/get-pip.py sudo python get-pip.py sudo pip install virtualenv ;; |