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 d52f30c commit 7e8b674Copy full SHA for 7e8b674
.travis.yml
@@ -26,9 +26,12 @@ env:
26
- PYTHON=conda
27
28
before_install:
29
- - julia -e 'using Pkg; Pkg.add("Conda")'
30
- - julia -e 'using Conda; Conda.add("scikit-learn")'
31
- - julia -e 'using Pkg; Pkg.build("PyCall"); Pkg.update()'
+ - |
+ if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
+ julia -e 'using Pkg; Pkg.add("Conda")'
32
+ julia -e 'using Conda; Conda.add("scikit-learn")'
33
+ julia -e 'using Pkg; Pkg.build("PyCall"); Pkg.update()'
34
+ fi
35
36
before_script:
37
- |
0 commit comments