summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2019-05-26 11:53:30 -0400
committerPaul Kehrer <paul.l.kehrer@gmail.com>2019-05-26 11:53:30 -0400
commit8ce4bfaddff295e4ba2d4902a681da572f01f757 (patch)
tree2f9c16840cfb3a3e63e46db45a63fa40a77500ac
parentac270ba76133958b140e2604c24d676ee13e41e8 (diff)
downloadpy-bcrypt-git-8ce4bfaddff295e4ba2d4902a681da572f01f757.tar.gz
Remove darwin from install.sh (#175)
-rwxr-xr-x.travis/install.sh17
1 files changed, 1 insertions, 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