From c2c6268c011d6cfe802059a9a3f384295cd56e9d Mon Sep 17 00:00:00 2001 From: "Chris Rackauckas (Claude)" Date: Tue, 9 Jun 2026 23:56:17 -0400 Subject: [PATCH] Downgrade CI: raise root ADTypes lower bound to 1.22.0 PR #3701 raised the ADTypes lower bound in sublibraries (e.g. lib/OrdinaryDiffEqExtrapolation to 1.22.0) but left the root Project.toml at 1.16.0. The downgrade workflow pins patch-specific root compat entries to their lower bound, so the root pinned ADTypes=1.16.0 while the path-fixed sublibraries require >= 1.22.0, making resolution unsatisfiable and failing "Downgrade / Downgrade Tests - InterfaceI" on master and every PR. Co-Authored-By: Chris Rackauckas Co-Authored-By: Claude Fable 5 --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index b3cdae1b959..bdc802f8be0 100644 --- a/Project.toml +++ b/Project.toml @@ -52,7 +52,7 @@ OrdinaryDiffEqStabilizedRK = {path = "lib/OrdinaryDiffEqStabilizedRK"} OrdinaryDiffEqSymplecticRK = {path = "lib/OrdinaryDiffEqSymplecticRK"} [compat] -ADTypes = "1.16.0" +ADTypes = "1.22.0" CommonSolve = "0.2.6" DocStringExtensions = "0.9.5" ForwardDiff = "1.3.3"