File tree Expand file tree Collapse file tree 2 files changed +12
-7
lines changed Expand file tree Collapse file tree 2 files changed +12
-7
lines changed Original file line number Diff line number Diff line change @@ -9,8 +9,8 @@ branches:
9
9
10
10
# # Documentation: http://docs.travis-ci.com/user/languages/julia/
11
11
language : julia
12
- sudo : false
13
- dist : trusty
12
+ sudo : true
13
+ dist : xenial
14
14
os :
15
15
- linux
16
16
- osx
@@ -23,19 +23,23 @@ notifications:
23
23
24
24
env :
25
25
global :
26
- - PYTHON=conda
27
-
26
+ - PYTHON=python3
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")'
33
+ - python3 -m pip install --user -U numpy scipy scikit-learn
30
34
- julia -e 'using Conda; Conda.add("scikit-learn")'
35
+ - julia -e 'using Pkg; Pkg.add("PyCall")'
31
36
32
37
before_script :
33
38
- |
34
39
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
35
40
brew update
36
41
brew upgrade cmake
37
42
fi
38
- - pip install --user -U numpy scipy scikit-learn
39
43
- julia -e 'using Pkg; Pkg.build("PyCall"); Pkg.update()'
40
44
41
45
after_success :
58
62
Pkg.instantiate();
59
63
Pkg.build("CalibrateEmulateSample")'
60
64
- julia --color=yes --project=docs/ docs/make.jl
61
- after_success : skip
65
+ after_success : skip
Original file line number Diff line number Diff line change 1
1
2
2
# Import Cloudy modules
3
3
using Pkg; Pkg. add (PackageSpec (url= " https://github.com/climate-machine/Cloudy.jl" ))
4
+ # using Pkg; Pkg.add("Cloudy"))
4
5
using Cloudy
5
6
using Cloudy. KernelTensors
6
- PDistributions = Cloudy. Distributions
7
+ PDistributions = Cloudy. ParticleDistributions
7
8
Pkg. add (" Plots" )
8
9
9
10
# Import modules
You can’t perform that action at this time.
0 commit comments