Skip to content

Commit

Permalink
Remove darwin from install.sh (#175)
Browse files Browse the repository at this point in the history
  • Loading branch information
alex authored and reaperhulk committed May 26, 2019
1 parent ac270ba commit 8ce4bfa
Showing 1 changed file with 1 addition and 16 deletions.
17 changes: 1 addition & 16 deletions .travis/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,22 +3,7 @@
set -e
set -x

if [[ "$(uname -s)" == 'Darwin' ]]; then
case "${TOXENV}" in
py27)
curl -O https://bootstrap.pypa.io/get-pip.py
python get-pip.py --user
;;
py35)
pyenv install 3.5.1
pyenv global 3.5.1
;;
esac
pyenv rehash
python -m pip install --user virtualenv
else
pip install virtualenv
fi
pip install virtualenv

python -m virtualenv ~/.venv
source ~/.venv/bin/activate
Expand Down

0 comments on commit 8ce4bfa

Please sign in to comment.