From 9bbd4e01086a2b48e9e091857e47ea117beff129 Mon Sep 17 00:00:00 2001 From: Thomas Leonard Date: Sun, 10 Mar 2024 15:24:53 +0000 Subject: [PATCH] Bound MDX version on all packages --- dune-project | 6 +++--- eio_linux.opam | 2 +- eio_main.opam | 2 +- eio_posix.opam | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/dune-project b/dune-project index 0c35c7d2e..0c8c452c0 100644 --- a/dune-project +++ b/dune-project @@ -34,7 +34,7 @@ (depends (alcotest (and (>= 1.7.0) :with-test)) (eio (= :version)) - (mdx (and (>= 2.2.0) :with-test)) + (mdx (and (>= 2.2.0) (< 2.4.0) :with-test)) (logs (and (>= 0.7.0) :with-test)) (fmt (>= 0.8.9)) (cmdliner (and (>= 1.1.0) :with-test)) @@ -47,7 +47,7 @@ (depends (eio (= :version)) (iomux (>= 0.2)) - (mdx (and (>= 2.2.0) :with-test)) + (mdx (and (>= 2.2.0) (< 2.4.0) :with-test)) (fmt (>= 0.8.9)))) (package (name eio_windows) @@ -64,7 +64,7 @@ (synopsis "Effect-based direct-style IO mainloop for OCaml") (description "Selects an appropriate Eio backend for the current platform.") (depends - (mdx (and (>= 2.2.0) :with-test)) + (mdx (and (>= 2.2.0) (< 2.4.0) :with-test)) (kcas (and (>= 0.3.0) :with-test)) (yojson (and (>= 2.0.2) :with-test)) (eio_linux (and diff --git a/eio_linux.opam b/eio_linux.opam index 8d43b86a5..3295b820f 100644 --- a/eio_linux.opam +++ b/eio_linux.opam @@ -12,7 +12,7 @@ depends: [ "dune" {>= "3.9"} "alcotest" {>= "1.7.0" & with-test} "eio" {= version} - "mdx" {>= "2.2.0" & with-test} + "mdx" {>= "2.2.0" & < "2.4.0" & with-test} "logs" {>= "0.7.0" & with-test} "fmt" {>= "0.8.9"} "cmdliner" {>= "1.1.0" & with-test} diff --git a/eio_main.opam b/eio_main.opam index 4856e6592..04be9aef3 100644 --- a/eio_main.opam +++ b/eio_main.opam @@ -10,7 +10,7 @@ doc: "https://ocaml-multicore.github.io/eio/" bug-reports: "https://github.com/ocaml-multicore/eio/issues" depends: [ "dune" {>= "3.9"} - "mdx" {>= "2.2.0" & with-test} + "mdx" {>= "2.2.0" & < "2.4.0" & with-test} "kcas" {>= "0.3.0" & with-test} "yojson" {>= "2.0.2" & with-test} "eio_linux" diff --git a/eio_posix.opam b/eio_posix.opam index bba85875f..e5c724697 100644 --- a/eio_posix.opam +++ b/eio_posix.opam @@ -12,7 +12,7 @@ depends: [ "dune" {>= "3.9"} "eio" {= version} "iomux" {>= "0.2"} - "mdx" {>= "2.2.0" & with-test} + "mdx" {>= "2.2.0" & < "2.4.0" & with-test} "fmt" {>= "0.8.9"} "odoc" {with-doc} ]