From df6847f01e5b02da2275e50268720fdde96b3cb7 Mon Sep 17 00:00:00 2001 From: ChrisRackauckas-Claude Date: Sun, 5 Jul 2026 19:15:16 -0400 Subject: [PATCH] Allow FindFirstFunctions v3 StateSelection imports a single name from FindFirstFunctions (findfirstequal), which is unchanged in v3, but the compat entry predates the v3 release and excludes it. This blocks co-installation with packages requiring FindFirstFunctions 3 (e.g. DataInterpolations 9 and the pending OrdinaryDiffEqCore FindFirstFunctions consolidation, SciML/OrdinaryDiffEq.jl#3826, whose sublibrary CI fails on exactly this conflict through the ModelingToolkit -> StateSelection edge). Test suite verified locally with FindFirstFunctions pinned to 3.0.1: all passing. Co-Authored-By: Chris Rackauckas --- Project.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Project.toml b/Project.toml index fc0197e..f32b132 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "StateSelection" uuid = "64909d44-ed92-46a8-bbd9-f047dfbdc84b" authors = ["JuliaHub", "Inc. and other contributors"] -version = "1.10.2" +version = "1.10.3" [deps] BipartiteGraphs = "caf10ac8-0290-4205-88aa-f15908547e8d" @@ -22,7 +22,7 @@ StateSelectionDeepDiffsExt = "DeepDiffs" [compat] BipartiteGraphs = "0.1.2" DocStringExtensions = "0.9.3" -FindFirstFunctions = "1.2.0, 2" +FindFirstFunctions = "1.2.0, 2, 3" Graphs = "1.10.0" LinearAlgebra = "1.10.0" OrderedCollections = "1"