From 15099b062ebedb8e903b6a20cbbb336ead96d71c Mon Sep 17 00:00:00 2001 From: Claude Date: Fri, 14 Nov 2025 16:40:41 +0000 Subject: [PATCH] Pin DimensionalData to exclude v0.29.25 DimensionalData v0.29.25 (released Nov 6, 2025) introduced a CondaPkg.toml that requires Python 3.13, which conflicts with ArviZ 0.18's requirement for Python 3.10-3.12. This caused DimensionalDataPythonCallExt to fail precompilation when both packages' CondaPkg requirements couldn't be simultaneously satisfied. The fix in DimensionalData (PR #1135) was merged on Nov 11, 2025 to move CondaPkg.toml to test/, but hasn't been released yet. This pins DimensionalData to 0.29.0-0.29.24 to exclude the problematic version. Fixes daily CI failures that started on Nov 7, 2025. --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 530f9a2..f23f162 100644 --- a/Project.toml +++ b/Project.toml @@ -18,7 +18,7 @@ Tables = "bd369af6-aec1-5ad0-b16a-f7cc5008161c" [compat] ArviZExampleData = "0.1.5" CondaPkg = "0.2" -DimensionalData = "0.23, 0.24, 0.25, 0.26, 0.27, 0.28, 0.29" +DimensionalData = "0.23, 0.24, 0.25, 0.26, 0.27, 0.28, 0.29.0-0.29.24" InferenceObjects = "0.4.13" Markdown = "1" OrderedCollections = "1"