From 8ce4bfaddff295e4ba2d4902a681da572f01f757 Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Sun, 26 May 2019 11:53:30 -0400 Subject: [PATCH] Remove darwin from install.sh (#175) --- .travis/install.sh | 17 +---------------- 1 file changed, 1 insertion(+), 16 deletions(-) diff --git a/.travis/install.sh b/.travis/install.sh index 8cc3c97..ee77847 100755 --- a/.travis/install.sh +++ b/.travis/install.sh @@ -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