diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2014-01-09 10:07:30 -0800 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2014-01-09 10:07:30 -0800 |
commit | dcbc911263a33b36ed630d6f8f3b5deadaf40bfc (patch) | |
tree | 95ab8747c35aff3d1bdea4bbc3f33cdb725304c8 | |
parent | 1f15f890a397e2b1c5d258a5c30d88e76667e42f (diff) | |
download | cryptography-dcbc911263a33b36ed630d6f8f3b5deadaf40bfc.tar.gz cryptography-dcbc911263a33b36ed630d6f8f3b5deadaf40bfc.tar.bz2 cryptography-dcbc911263a33b36ed630d6f8f3b5deadaf40bfc.zip |
easy_install is awful, don't use it
-rwxr-xr-x | .travis/install.sh | 6 |
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 ;; |