Skip to content

Commit 2d484d8

Browse files
authored
Merge pull request #344 from JuliaControl/compathelper/new_version/2026-03-28-02-14-33-701-00836951129
CompatHelper: bump compat for LinearMPC in [weakdeps] to 0.9, (keep existing compat)
2 parents c35c3e1 + 9bc479a commit 2d484d8

3 files changed

Lines changed: 4 additions & 7 deletions

File tree

Project.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ LinearMPCext = "LinearMPC"
3232
[compat]
3333
Aqua = "0.8"
3434
ControlSystemsBase = "1.18.2"
35-
DAQP = "0.6, 0.7.1"
35+
DAQP = "0.6, 0.7.1, 0.8"
3636
DifferentiationInterface = "0.7.11"
3737
Documenter = "1"
3838
FastGaussQuadrature = "1.1.0"
@@ -41,7 +41,7 @@ ForwardDiff = "0.10, 1"
4141
Ipopt = "1"
4242
JuMP = "1.21"
4343
LinearAlgebra = "1.10"
44-
LinearMPC = "0.8.0"
44+
LinearMPC = "0.8, 0.9"
4545
Logging = "1.10"
4646
MathOptInterface = "1.46"
4747
OSQP = "0.8"

docs/Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ DAQP = "0.6, 0.7.1"
1616
Documenter = "1"
1717
JuMP = "1"
1818
LinearAlgebra = "1.10"
19-
LinearMPC = "0.8.0"
19+
LinearMPC = "0.8, 0.9"
2020
Logging = "1.10"
2121
ModelingToolkit = "10, 11"
2222
Plots = "1"

test/3_test_predictive_control.jl

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,7 @@
1818
mpc6 = LinMPC(model, Lwt=[0,1], Hp=15)
1919
@test mpc6.weights.L_Hp Diagonal(diagm(repeat(Float64[0, 1], 15)))
2020
@test mpc6.weights.L_Hp isa Hermitian{Float64, Diagonal{Float64, Vector{Float64}}}
21-
mpc7 = @test_logs(
22-
(:warn, "Solving time limit is not supported by the DAQP optimizer."),
23-
LinMPC(model, optim=JuMP.Model(DAQP.Optimizer))
24-
)
21+
mpc7 = LinMPC(model, optim=JuMP.Model(DAQP.Optimizer))
2522
@test solver_name(mpc7.optim) == "DAQP"
2623
kf = KalmanFilter(model)
2724
mpc8 = LinMPC(kf)

0 commit comments

Comments
 (0)