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 7fd0032 commit 5d729b1Copy full SHA for 5d729b1
.travis.yml
@@ -32,11 +32,17 @@ env:
32
- ALIAS='nightly'
33
34
install:
35
-- pushd /opt/pyenv/
36
-- sudo git checkout master
37
-- sudo git pull
38
-- popd
39
-- python -m pip install virtualenv
+- |
+ if [[ "$(uname)" == "Linux" ]] ; then
+ pushd /opt/pyenv/
+ sudo git checkout master
+ sudo git pull
40
+ popd
41
+ else
42
+ brew uninstall pyenv
43
+ brew install pyenv --HEAD
44
+ fi
45
+- sudo -H python -m pip install virtualenv --upgrade
46
47
before_script:
48
- 'export INSTALL_DEST=${INSTALL_DEST:-/opt/python}'
0 commit comments