From ae322e906b9ac18d053f8d4b5b94807625dda163 Mon Sep 17 00:00:00 2001 From: Aayush Sabharwal Date: Wed, 16 Jul 2025 11:46:03 +0530 Subject: [PATCH 1/2] test: `LinearProblem` tests are no longer broken --- test/linearproblem.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/linearproblem.jl b/test/linearproblem.jl index 7cba931ae5..308006d547 100644 --- a/test/linearproblem.jl +++ b/test/linearproblem.jl @@ -104,7 +104,7 @@ end sol = solve(prob) # https://github.com/SciML/LinearSolve.jl/issues/532 - @test_broken SciMLBase.successful_retcode(sol) + @test SciMLBase.successful_retcode(sol) @test prob.A * sol.u - prob.b≈zeros(3) atol=1e-10 A2 = rand(3, 3) @@ -131,7 +131,7 @@ end sol = solve(prob3) # https://github.com/SciML/LinearSolve.jl/issues/532 - @test_broken SciMLBase.successful_retcode(sol) + @test SciMLBase.successful_retcode(sol) @test prob3.A * sol.u - prob3.b≈zeros(3) atol=1e-10 end end From b98075c5649e8308bbb43b1c09e0766afb3edc7f Mon Sep 17 00:00:00 2001 From: Aayush Sabharwal Date: Wed, 16 Jul 2025 11:46:25 +0530 Subject: [PATCH 2/2] build: bump LinearSolve compat --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index d92500f7e2..98c7837212 100644 --- a/Project.toml +++ b/Project.toml @@ -129,7 +129,7 @@ LabelledArrays = "1.3" Latexify = "0.11, 0.12, 0.13, 0.14, 0.15, 0.16" Libdl = "1" LinearAlgebra = "1" -LinearSolve = "3" +LinearSolve = "3.19.2" Logging = "1" MLStyle = "0.4.17" ModelingToolkitStandardLibrary = "2.20"