aboutsummaryrefslogtreecommitdiffstats
path: root/.travis
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2014-05-17 12:57:38 -0700
committerAlex Gaynor <alex.gaynor@gmail.com>2014-05-17 12:57:38 -0700
commiteecfdfad986c33fc32f98ae69809f1307bfcfdb2 (patch)
treef7c99b8b6d01a51566325cc5ccf0b4ee75f27938 /.travis
parenta741aad3bd7d6347b9816025cb4905558c2c71c6 (diff)
downloadcryptography-eecfdfad986c33fc32f98ae69809f1307bfcfdb2.tar.gz
cryptography-eecfdfad986c33fc32f98ae69809f1307bfcfdb2.tar.bz2
cryptography-eecfdfad986c33fc32f98ae69809f1307bfcfdb2.zip
Use the new official URL for downloading get-pip.py
Diffstat (limited to '.travis')
-rwxr-xr-x.travis/install.sh6
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
;;