File tree Expand file tree Collapse file tree 4 files changed +9
-7
lines changed Expand file tree Collapse file tree 4 files changed +9
-7
lines changed Original file line number Diff line number Diff line change 11
11
build :
12
12
runs-on : ubuntu-latest
13
13
steps :
14
+ - name : Install Python dependencies
15
+ run : if [ "$RUNNER_OS" = "Linux" ]; then sudo apt-get install -y python3-numpy python3-scipy python3-matplotlib; fi
16
+ shell : bash
14
17
- uses : actions/checkout@v2
15
18
- uses : julia-actions/setup-julia@latest
16
19
with :
Original file line number Diff line number Diff line change 17
17
arch :
18
18
- x64
19
19
steps :
20
+ - name : Install Python dependencies
21
+ run : if [ "$RUNNER_OS" = "Linux" ]; then sudo apt-get install -y python3-numpy python3-scipy python3-matplotlib; fi
22
+ shell : bash
20
23
- uses : actions/checkout@v2
21
24
- uses : julia-actions/setup-julia@v1
22
25
with :
Original file line number Diff line number Diff line change 1
1
name = " BioMASS"
2
2
uuid = " 324734c7-f323-4536-9335-775d9be9d101"
3
3
authors = [" Hiroaki Imoto <himoto@protein.osaka-u.ac.jp>" ]
4
- version = " 0.7.1 "
4
+ version = " 0.7.2 "
5
5
6
6
[deps ]
7
7
CMAEvolutionStrategy = " 8d3b24bd-414e-49e0-94fb-163cc3a3e411"
Original file line number Diff line number Diff line change @@ -88,16 +88,12 @@ function isinstalled(pymodule::String)::Bool
88
88
end
89
89
end
90
90
91
- if isinstalled (" numpy" ) && isinstalled (" scipy" )
92
- include (" pyproject.jl" )
93
- end
91
+ include (" pyproject.jl" )
94
92
include (" optimize.jl" )
95
93
include (" estimation/initial_population.jl" )
96
94
include (" estimation/converging.jl" )
97
95
include (" estimation/local_search.jl" )
98
96
include (" estimation/ga.jl" )
99
- if isinstalled (" matplotlib" )
100
- include (" visulalize.jl" )
101
- end
97
+ include (" visulalize.jl" )
102
98
include (" continuation.jl" )
103
99
end # module
You can’t perform that action at this time.
0 commit comments