Skip to content

Commit 9bbd4e0

Browse files
committed
Bound MDX version on all packages
1 parent edfe8de commit 9bbd4e0

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

dune-project

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
(depends
3535
(alcotest (and (>= 1.7.0) :with-test))
3636
(eio (= :version))
37-
(mdx (and (>= 2.2.0) :with-test))
37+
(mdx (and (>= 2.2.0) (< 2.4.0) :with-test))
3838
(logs (and (>= 0.7.0) :with-test))
3939
(fmt (>= 0.8.9))
4040
(cmdliner (and (>= 1.1.0) :with-test))
@@ -47,7 +47,7 @@
4747
(depends
4848
(eio (= :version))
4949
(iomux (>= 0.2))
50-
(mdx (and (>= 2.2.0) :with-test))
50+
(mdx (and (>= 2.2.0) (< 2.4.0) :with-test))
5151
(fmt (>= 0.8.9))))
5252
(package
5353
(name eio_windows)
@@ -64,7 +64,7 @@
6464
(synopsis "Effect-based direct-style IO mainloop for OCaml")
6565
(description "Selects an appropriate Eio backend for the current platform.")
6666
(depends
67-
(mdx (and (>= 2.2.0) :with-test))
67+
(mdx (and (>= 2.2.0) (< 2.4.0) :with-test))
6868
(kcas (and (>= 0.3.0) :with-test))
6969
(yojson (and (>= 2.0.2) :with-test))
7070
(eio_linux (and

eio_linux.opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ depends: [
1212
"dune" {>= "3.9"}
1313
"alcotest" {>= "1.7.0" & with-test}
1414
"eio" {= version}
15-
"mdx" {>= "2.2.0" & with-test}
15+
"mdx" {>= "2.2.0" & < "2.4.0" & with-test}
1616
"logs" {>= "0.7.0" & with-test}
1717
"fmt" {>= "0.8.9"}
1818
"cmdliner" {>= "1.1.0" & with-test}

eio_main.opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ doc: "https://ocaml-multicore.github.io/eio/"
1010
bug-reports: "https://github.com/ocaml-multicore/eio/issues"
1111
depends: [
1212
"dune" {>= "3.9"}
13-
"mdx" {>= "2.2.0" & with-test}
13+
"mdx" {>= "2.2.0" & < "2.4.0" & with-test}
1414
"kcas" {>= "0.3.0" & with-test}
1515
"yojson" {>= "2.0.2" & with-test}
1616
"eio_linux"

eio_posix.opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ depends: [
1212
"dune" {>= "3.9"}
1313
"eio" {= version}
1414
"iomux" {>= "0.2"}
15-
"mdx" {>= "2.2.0" & with-test}
15+
"mdx" {>= "2.2.0" & < "2.4.0" & with-test}
1616
"fmt" {>= "0.8.9"}
1717
"odoc" {with-doc}
1818
]

0 commit comments

Comments
 (0)