From 51a5290dac5410e79089d5b4b79a981e4a8669f9 Mon Sep 17 00:00:00 2001 From: Marco Matthies <71844+marcom@users.noreply.github.com> Date: Tue, 2 Jan 2024 14:24:18 +0100 Subject: [PATCH] Keep ResumableFunctions at v0.6.5 for now to avoid stack overflow on julia-1.10 `allstruct` has a stack overflow (probably in type inference) from inside julia on julia-1.10 with ResumableFunctions v0.6.5. To reproduce: ``` using FoldRNA collect(allstruct(10)) ``` Upstream issue: https://github.com/JuliaDynamics/ResumableFunctions.jl/issues/80 --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index c10dfc7..9ad195a 100644 --- a/Project.toml +++ b/Project.toml @@ -18,7 +18,7 @@ ViennaRNA_jll = "b7a990de-7fa3-5a2e-8a39-d875e4dafecd" DataStructures = "0.18" LogExpFunctions = "0.3" OffsetArrays = "1.12" -ResumableFunctions = "0.6.2" +ResumableFunctions = "=0.6.5" StaticArrays = "1.4.4" Unitful = "1.11" ViennaRNA_jll = "~2.6.2"