aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDonald Stufft <donald@stufft.io>2014-05-17 16:19:41 -0400
committerDonald Stufft <donald@stufft.io>2014-05-17 16:19:41 -0400
commit996d659a46c1d26a0346c60694fb504e75e3444f (patch)
tree8f7c6038a215411cdbeefb369ff512c5d81234bd
parentb6d8f7b95f4db772794a4f908a2156e34edd8332 (diff)
parenteecfdfad986c33fc32f98ae69809f1307bfcfdb2 (diff)
downloadcryptography-996d659a46c1d26a0346c60694fb504e75e3444f.tar.gz
cryptography-996d659a46c1d26a0346c60694fb504e75e3444f.tar.bz2
cryptography-996d659a46c1d26a0346c60694fb504e75e3444f.zip
Merge pull request #1052 from alex/new-pypa-location
Use the new official URL for downloading get-pip.py
-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
;;