From 847d1eeaa2c38b35de6b89fb5b657217c47fb863 Mon Sep 17 00:00:00 2001 From: ChrisRackauckas-Claude Date: Sat, 4 Jul 2026 23:13:26 -0400 Subject: [PATCH] test: bump StochasticDiffEq compat floor to 7.1 for Downgrade lane The Downgrade lane min-resolves the test env to StochasticDiffEq 7.0.0, whose compat allows DiffEqNoiseProcess >= 5.13.0. DiffEqNoiseProcess < 5.30.0 only supports DiffEqBase 6, while StochasticDiffEq 7.0.0 itself requires DiffEqBase 7, so the floor graph is unsatisfiable ("no versions left" for DiffEqBase). StochasticDiffEq 7.1.0 raises its DiffEqNoiseProcess floor to 5.30.0 (the first DiffEqNoiseProcess release compatible with DiffEqBase 7). Flooring the test compat at 7.1 makes the downgrade floor graph resolve cleanly. Co-Authored-By: Chris Rackauckas --- test/Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Project.toml b/test/Project.toml index fbb71c62..7fb4b873 100644 --- a/test/Project.toml +++ b/test/Project.toml @@ -53,7 +53,7 @@ SafeTestsets = "0.1" SciMLBase = "3.1" StaticArrays = "1.9.14" Statistics = "1" -StochasticDiffEq = "7" +StochasticDiffEq = "7.1" TOML = "1" Zygote = "0.7.3" pocl_jll = "7"