Try not updating OpenSSL for now

This commit is contained in:
Aldo Cortesi 2016-06-03 12:46:48 +12:00
parent e584ef0c56
commit 0d4a930397
2 changed files with 2 additions and 2 deletions

View File

@ -36,7 +36,7 @@ install:
if [[ $TRAVIS_OS_NAME == "osx" ]]
then
brew update || brew update # try again if it fails
brew outdated openssl || brew upgrade openssl
# brew outdated openssl || brew upgrade openssl
brew install python
fi
- pip install -U virtualenv

2
dev.sh
View File

@ -9,7 +9,7 @@ echo "Creating dev environment in $VENV using Python $PYVERSION"
python$PYVERSION -m virtualenv "$VENV" --always-copy
. "$VENV/bin/activate"
pip$PYVERSION install -q -U pip setuptools
pip$PYVERSION install -r requirements.txt
pip$PYVERSION install -q -r requirements.txt
echo ""
echo "* Virtualenv created in $VENV and all dependencies installed."