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 849adab commit 2b7ab9eCopy full SHA for 2b7ab9e
.travis.yml
@@ -24,6 +24,10 @@ matrix:
24
env: PYTHON=python3 # I'm not sure how to install Python 3 on Travis OSX
25
before_install:
26
- test "x$TRAVIS_OS_NAME" = xosx -o "x$PYTHON" = xConda || (sudo apt-get -qq update && sudo apt-get install -y $PYTHON)
27
+ - julia --color=yes -e 'VERSION < v"0.7.0-DEV.5183" || using Pkg; Pkg.add("Conda")'
28
+ - if [ "x$PYTHON" = xConda ]; then
29
+ julia --color=yes -e 'using Conda; Conda.add("python=3.7")';
30
+ fi
31
32
after_success:
33
- julia -e 'Pkg.add("Coverage"); using Coverage; Codecov.submit(process_folder())'
0 commit comments