summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-x.travis/install.sh7
1 files changed, 4 insertions, 3 deletions
diff --git a/.travis/install.sh b/.travis/install.sh
index 929099c..99bb0f7 100755
--- a/.travis/install.sh
+++ b/.travis/install.sh
@@ -5,13 +5,14 @@ set -x
if [[ -n "$PYENV_VERSION" ]]; then
if [[ $TRAVIS_OS_NAME == 'osx' ]]; then
- brew update && brew upgrade pyenv
- brew install readline xz
+ brew update
+ brew install expat readline xz openssl
+ brew upgrade pyenv
fi
eval "$(pyenv init -)"
pyenv install --list
if [[ $TRAVIS_OS_NAME == 'osx' ]]; then
- CFLAGS="-I$(xcrun --show-sdk-path)/usr/include" pyenv install -s "$PYENV_VERSION"
+ CFLAGS="-I$(xcrun --show-sdk-path)/usr/include $CFLAGS" pyenv install -s "$PYENV_VERSION"
else
pyenv install -s "$PYENV_VERSION"
fi