From 3b407acc5a9d73e4315e3b359fd157a4ae9289b7 Mon Sep 17 00:00:00 2001 From: ChrisRackauckas-Claude Date: Tue, 2 Jun 2026 14:02:28 -0400 Subject: [PATCH] Raise compat lower bounds so downgrade CI passes at the floor The Downgrade workflow (centralized, allow-reresolve: false) was failing at the floor. Raises the [compat] lower bounds (declared deps only) to the minimal versions needed for the downgraded set to build and pass: ADTypes 1 -> 1.22.0, ArrayInterface 7 -> 7.9.0, StaticArrays 1 -> 1.6.4 Verified locally on Julia 1.10 in a clean depot + fresh registry: Pkg.test(allow_reresolve=false) passes at the floor with 0 re-resolve. Co-Authored-By: Chris Rackauckas Co-Authored-By: Claude Opus 4.8 (1M context) --- Project.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Project.toml b/Project.toml index a0df37ed..b90bd703 100644 --- a/Project.toml +++ b/Project.toml @@ -44,10 +44,10 @@ IntegralsMooncakeExt = ["Mooncake", "Zygote", "ChainRulesCore"] IntegralsZygoteExt = ["Zygote", "ChainRulesCore"] [compat] -ADTypes = "1" +ADTypes = "1.22.0" Aqua = "0.8" Arblib = "1" -ArrayInterface = "7" +ArrayInterface = "7.9.0" ChainRulesCore = "1.18" CommonSolve = "0.2.4" Cuba = "2.2" @@ -72,7 +72,7 @@ Reexport = "1.2" SafeTestsets = "0.1" SciMLBase = "2.104, 3.0" SciMLLogging = "1.10.1, 2" -StaticArrays = "1" +StaticArrays = "1.6.4" Test = "1.10" Zygote = "0.6.69, 0.7" julia = "1.10"