We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef4f1c8 commit 8c4f0b3Copy full SHA for 8c4f0b3
.travis.yml
@@ -21,10 +21,10 @@ 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
+ 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
+ pyenv install -s "$ver"
+ done
+ pyenv global $versions
29
fi
30
script: tox
0 commit comments