We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef4f1c8 commit 00127a6Copy full SHA for 00127a6
1 file changed
.travis.yml
@@ -21,10 +21,13 @@ install:
21
if [[ "$TRAVIS_OS_NAME" = "linux" ]]; then
22
pip install --upgrade pip setuptools tox-travis
23
elif [[ "$TRAVIS_OS_NAME" = "osx" ]]; then
24
- brew tap drolando/homebrew-deadsnakes
25
- brew install zlib
26
- brew install python34 python35 python36 python3 pypy
27
- pip install --upgrade pip setuptools
28
- pip install tox
+ export LDFLAGS="${LDFLAGS} -L/usr/local/opt/zlib/lib"
+ export CPPFLAGS="${CPPFLAGS} -I/usr/local/opt/zlib/include"
+ export PKG_CONFIG_PATH="${PKG_CONFIG_PATH} /usr/local/opt/zlib/lib/pkgconfig"
+ versions=(3.7.2 3.6.8 3.5.6 3.4.9 2.7.15 pypy3.5-6.0 pypy2.7-6.0.0)
+ for ver in $versions; do
29
+ pyenv install -s "$ver"
30
+ done
31
+ pyenv global $versions
32
fi
33
script: tox
0 commit comments