Skip to content

Commit b8d1c59

Browse files
authored
Merge pull request #1339 from SciML/dmw/fix_ci
Fix CI
2 parents a058ce8 + 998776e commit b8d1c59

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/Documentation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
- name: Install Julia
4242
uses: julia-actions/setup-julia@latest
4343
with:
44-
version: '1'
44+
version: '1.11'
4545

4646
# Cache to speed up subsequent runs
4747
- uses: julia-actions/cache@v2

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ EnumX = "1"
5757
GraphMakie = "0.5"
5858
Graphs = "1.4"
5959
HomotopyContinuation = "2.9"
60-
JumpProcesses = "9.13.2"
60+
JumpProcesses = "9.19.2"
6161
LaTeXStrings = "1.3.0"
6262
Latexify = "0.16.6"
6363
MacroTools = "0.5.5"

docs/Project.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Symbolics = "0c5d862f-8b57-4792-8d23-62f2024744c7"
4949

5050
[compat]
5151
BenchmarkTools = "1.5"
52-
BifurcationKit = "0.4.4"
52+
BifurcationKit = "0.4.17"
5353
CairoMakie = "0.12, 0.13"
5454
Catalyst = "15"
5555
DataFrames = "1.6"
@@ -64,14 +64,14 @@ GraphMakie = "0.5"
6464
Graphs = "1.11.1"
6565
HomotopyContinuation = "2.9"
6666
IncompleteLU = "0.2"
67-
JumpProcesses = "9.13.2"
67+
JumpProcesses = "9.19.2"
6868
Latexify = "0.16.5"
6969
LinearSolve = "2.30, 3"
7070
ModelingToolkit = "9.69"
7171
NetworkLayout = "0.4"
7272
NonlinearSolve = "3.12, 4"
7373
Optim = "1.9"
74-
Optimization = "4, 5"
74+
Optimization = "4"
7575
OptimizationBBO = "0.4"
7676
OptimizationEvolutionary = "0.4"
7777
OptimizationNLopt = "0.3"
@@ -83,7 +83,7 @@ OrdinaryDiffEqRosenbrock = "1"
8383
OrdinaryDiffEqSDIRK = "1"
8484
OrdinaryDiffEqTsit5 = "1"
8585
OrdinaryDiffEqVerner = "1"
86-
PEtab = "3.8"
86+
PEtab = "3.11.1"
8787
Plots = "1.40"
8888
QuasiMonteCarlo = "0.3"
8989
SciMLBase = "2.46"

test/simulation_and_solving/hybrid_models.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,12 +106,12 @@ let
106106
Nsims = 4000
107107
for n in 1:Nsims
108108
sol = solve(jprob, Tsit5(); saveat = tspan[2], seed)
109-
@test sol.retcode == ReturnCode.Terminated
109+
@test SciMLBase.successful_retcode(sol)
110110
Xsamp += sol[1, end]
111111
seed += 1
112112
end
113113
Xsamp /= Nsims
114-
@test abs(Xsamp - Xf(0.2, p) < 0.05 * Xf(0.2, p))
114+
@test abs(Xsamp - Xf(0.2, p)) < 0.05 * Xf(0.2, p)
115115
end
116116

117117
# Checks that a disjoint hybrid model (i.e. where the Jump and ODE parts do not interact) gives the

0 commit comments

Comments
 (0)