From df72c91f565d0aab9bd802e1fade9eff6e7f33d3 Mon Sep 17 00:00:00 2001 From: ChrisRackauckas-Claude Date: Sun, 5 Jul 2026 06:54:16 -0400 Subject: [PATCH] Bump StaticArrays floor to 1.9.8 (fixes Downgrade Core lts) StaticArrays 1.9.7 fails to precompile on Julia 1.10 with `UndefVarError: require_one_based_indexing not defined`, so the Downgrade Core lts lane (which resolves the root project at minimum versions) picks 1.9.7 and dies during precompile before any test runs. Reproduced on Julia 1.10.11: - StaticArrays 1.9.7 -> Failed to precompile (UndefVarError: require_one_based_indexing) - StaticArrays 1.9.8 -> precompiles and loads cleanly Raising the compat floor to 1.9.8 makes the minimum resolvable version precompile-clean. Same fix as DataInterpolations #553. Co-Authored-By: Chris Rackauckas --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 3aa229b..bf5b4d2 100644 --- a/Project.toml +++ b/Project.toml @@ -69,7 +69,7 @@ SafeTestsets = "0.1, 1" SciMLBase = "2.104, 3.0" SciMLLogging = "1.10.1, 2" SciMLTesting = "1" -StaticArrays = "1.9.7" +StaticArrays = "1.9.8" Test = "1.10" Zygote = "0.7.10" julia = "1.10"