From 5670621db7049b6f31cb9e0f4b340510e13fe232 Mon Sep 17 00:00:00 2001 From: Thomas Gazagnaire Date: Thu, 13 Mar 2025 09:52:36 +0100 Subject: [PATCH] Fix OCaml constraint for old version of Seq --- packages/seq/seq.0.2.2/opam | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/seq/seq.0.2.2/opam b/packages/seq/seq.0.2.2/opam index 8d9fc2e8236b..79bdcc1d0d0c 100644 --- a/packages/seq/seq.0.2.2/opam +++ b/packages/seq/seq.0.2.2/opam @@ -8,7 +8,8 @@ build: [ ] depends: [ "dune" {>= "1.1.0"} - "ocaml" + # See https://github.com/c-cube/seq/issues/12 + "ocaml" {< "4.07.0"} ] tags: [ "iterator" "seq" "pure" "list" "compatibility" "cascade" ] homepage: "https://github.com/c-cube/seq/"