From fce78444142df34fa78b255d409da3ce1e7882a3 Mon Sep 17 00:00:00 2001 From: Gabriel Scherer Date: Fri, 22 Dec 2023 15:47:34 +0100 Subject: [PATCH] fix the OCaml bound in .opam: we use Seq.take which is 4.14 Reported-by: Ellenor Taghayor --- constrained_generation.opam | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/constrained_generation.opam b/constrained_generation.opam index b316c0a..9456cd0 100644 --- a/constrained_generation.opam +++ b/constrained_generation.opam @@ -10,7 +10,7 @@ build: [ ["dune" "build" "-p" name "-j" jobs] ] depends: [ - "ocaml" { >= "4.08" } + "ocaml" { >= "4.14" } "dune" { >= "2.8" } "unionFind" { >= "20220109" } "pprint"