From b91e541c180649c9aa9bc70e1dcb0cf2837232a9 Mon Sep 17 00:00:00 2001 From: Seth Axen Date: Tue, 7 Jul 2026 11:32:39 +0200 Subject: [PATCH 1/2] fix: Bump stale compat floors for EvoTrees, OffsetArrays, StatsBase These floors were unreachable together and broke the Downgrade CI job's merged-resolution step ("Unsatisfiable"): - StatsBase 0.33.7 -> 0.33.17: required by PosteriorStats>=0.3 - OffsetArrays 1 -> 1.0.1: Interpolations (via PosteriorStats -> KernelDensity) excludes exactly 1.0.0 - EvoTrees 0.16 -> 0.16.3: CUDA was a hard dep before 0.16.3, and that CUDA version's GPUCompiler requirement doesn't support Julia 1.10 Verified by resolving and running the full test suite with all deps pinned to these floor versions on Julia 1.10. Co-Authored-By: Claude Sonnet 5 --- Project.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Project.toml b/Project.toml index 087d0382..526332ab 100644 --- a/Project.toml +++ b/Project.toml @@ -26,15 +26,15 @@ ANSIColoredPrinters = "0.0.1" ArviZExampleData = "0.3" Dates = "1" DimensionalData = "0.27, 0.28, 0.29, 0.30" -EvoTrees = "0.16" +EvoTrees = "0.16.3" MCMCDiagnosticTools = "0.3.4" MLJBase = "1" NCDatasets = "0.12.6, 0.13, 0.14" -OffsetArrays = "1" +OffsetArrays = "1.0.1" OrderedCollections = "1.6" PosteriorStats = "0.3, 0.4" Random = "1" -StatsBase = "0.33.7, 0.34" +StatsBase = "0.33.17, 0.34" Tables = "1.11.0" julia = "1.10" From a9154147eaa7457ea292f64eeb53c0073412c1f4 Mon Sep 17 00:00:00 2001 From: Seth Axen Date: Tue, 7 Jul 2026 11:34:40 +0200 Subject: [PATCH 2/2] chore: Increment patch number StatsBase is a weakdep, and its compat floor changed in the previous commit. Co-Authored-By: Claude Sonnet 5 --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 526332ab..70a90c74 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "InferenceObjects" uuid = "b5cf5a8d-e756-4ee3-b014-01d49d192c00" authors = ["Seth Axen and contributors"] -version = "0.4.17" +version = "0.4.18" [deps] ANSIColoredPrinters = "a4c015fc-c6ff-483c-b24f-f7ea428134e9"