aboutsummaryrefslogtreecommitdiffstats
path: root/.travis
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2014-01-09 10:07:30 -0800
committerAlex Gaynor <alex.gaynor@gmail.com>2014-01-09 10:07:30 -0800
commitdcbc911263a33b36ed630d6f8f3b5deadaf40bfc (patch)
tree95ab8747c35aff3d1bdea4bbc3f33cdb725304c8 /.travis
parent1f15f890a397e2b1c5d258a5c30d88e76667e42f (diff)
downloadcryptography-dcbc911263a33b36ed630d6f8f3b5deadaf40bfc.tar.gz
cryptography-dcbc911263a33b36ed630d6f8f3b5deadaf40bfc.tar.bz2
cryptography-dcbc911263a33b36ed630d6f8f3b5deadaf40bfc.zip
easy_install is awful, don't use it
Diffstat (limited to '.travis')
-rwxr-xr-x.travis/install.sh6
1 files changed, 4 insertions, 2 deletions
diff --git a/.travis/install.sh b/.travis/install.sh
index d25ed941..8d6840f2 100755
--- a/.travis/install.sh
+++ b/.travis/install.sh
@@ -15,12 +15,14 @@ if [[ "$(uname -s)" == "Darwin" ]]; then
if which pyenv > /dev/null; then eval "$(pyenv init -)"; fi
case "${TOX_ENV}" in
py26)
- sudo easy_install pip
+ curl -O https://raw.github.com/pypa/pip/master/contrib/get-pip.py
+ sudo python get-pip.py
sudo pip install setuptools --no-use-wheel --upgrade
sudo pip install virtualenv
;;
py27)
- sudo easy_install pip
+ curl -O https://raw.github.com/pypa/pip/master/contrib/get-pip.py
+ sudo python get-pip.py
sudo pip install setuptools --no-use-wheel --upgrade
sudo pip install virtualenv
;;