File tree Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ branches:
10
10
# # Documentation: http://docs.travis-ci.com/user/languages/julia/
11
11
language : julia
12
12
sudo : true
13
- dist : trusty
13
+ dist : xenial
14
14
os :
15
15
- linux
16
16
- osx
@@ -24,10 +24,13 @@ notifications:
24
24
env :
25
25
global :
26
26
- PYTHON=python3
27
-
28
27
before_install :
28
+ - |
29
+ if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
30
+ sudo apt-get update && sudo apt-get install -qq -y python3-pip
31
+ fi
29
32
- julia -e 'using Pkg; Pkg.add("Conda")'
30
- - sudo apt update && sudo apt install -y python3-pip
33
+ - python3 -m pip install --user -U numpy scipy scikit-learn
31
34
- julia -e 'using Conda; Conda.add("scikit-learn")'
32
35
- julia -e 'using Pkg; Pkg.add("PyCall")'
33
36
59
62
Pkg.instantiate();
60
63
Pkg.build("CalibrateEmulateSample")'
61
64
- julia --color=yes --project=docs/ docs/make.jl
62
- after_success : skip
65
+ after_success : skip
You can’t perform that action at this time.
0 commit comments