From a7a0899b0eda62c2ad16f8b28e6169a1d429865f Mon Sep 17 00:00:00 2001 From: ChrisRackauckas-Claude Date: Sat, 4 Jul 2026 22:58:58 -0400 Subject: [PATCH] Bump StaticArrays compat floor to 1.9.8 (1.9.7 fails to precompile on Julia 1.10) StaticArrays 1.9.7 fails to precompile on Julia 1.10 with `UndefVarError: require_one_based_indexing not defined`, which breaks the Downgrade CI lane (it resolves to the minimal compatible version). 1.9.8 is the first patch that precompiles cleanly on 1.10. Bump the floor from 1.9.7 to 1.9.8 in the root Project.toml and test/qa/Project.toml for consistency. Compat-only change (no public API touched), so this is a patch release. Co-Authored-By: Chris Rackauckas --- Project.toml | 2 +- test/qa/Project.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Project.toml b/Project.toml index 302ecd81..ef452e4a 100644 --- a/Project.toml +++ b/Project.toml @@ -52,7 +52,7 @@ SafeTestsets = "0.1" SciMLTesting = "1" SparseConnectivityTracer = "1" StableRNGs = "1" -StaticArrays = "1.9.7" +StaticArrays = "1.9.8" Symbolics = "7.0.0" Test = "1.10" Unitful = "1.21.1" diff --git a/test/qa/Project.toml b/test/qa/Project.toml index 8bd513e3..51784413 100644 --- a/test/qa/Project.toml +++ b/test/qa/Project.toml @@ -15,5 +15,5 @@ AllocCheck = "0.2" Aqua = "0.8" SafeTestsets = "0.0.1, 0.1" SciMLTesting = "1.7" -StaticArrays = "1.9.7" +StaticArrays = "1.9.8" Test = "1"