From e4cf6fac3f5a418a94c5707dce8110fbfb08f335 Mon Sep 17 00:00:00 2001 From: Stephen Sherratt Date: Mon, 24 Mar 2025 16:55:19 +1100 Subject: [PATCH] Remove version constraints on alcotest This project's tests build and pass with the latest version, and upper bound on alcotest was previously < 0.9 which is no longer in the opam repository. --- ppx_mysql.opam | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ppx_mysql.opam b/ppx_mysql.opam index 852ed97..29121d3 100644 --- a/ppx_mysql.opam +++ b/ppx_mysql.opam @@ -16,7 +16,7 @@ build: [ ["dune" "runtest" "-p" name "-j" jobs] {with-test} ] depends: [ - "alcotest" {with-test & >= "0.8" & < "0.9"} + "alcotest" {with-test} "dune" {>= "1.4"} "ocamlformat" {with-test & >= "0.9" & < "0.10"} "ocaml" {>= "4.06.0" }