Skip to content

Commit 3e024f8

Browse files
authored
Merge pull request #24542 from mseri/fix-ubs
Fix upper bounds on tests using mdx
2 parents 044356b + ec8bac9 commit 3e024f8

File tree

12 files changed

+11
-12
lines changed
  • packages
    • cohttp-eio/cohttp-eio.6.0.0~alpha0
    • containers-data/containers-data.3.11
    • eio_main
    • lwt_eio
    • par_incr/par_incr.0.1
    • uring

12 files changed

+11
-12
lines changed

packages/cohttp-eio/cohttp-eio.6.0.0~alpha0/opam

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@ build: [
4141
jobs
4242
"--promote-install-files=false"
4343
"@install"
44-
"@cohttp-eio/runtest" {with-test}
4544
"@doc" {with-doc}
4645
]
4746
["dune" "install" "-p" name "--create-install-files" name]

packages/containers-data/containers-data.3.11/opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ license: "BSD-2-Clause"
55
build: [
66
["dune" "build" "-p" name "-j" jobs]
77
["dune" "build" "@doc" "-p" name ] {with-doc}
8-
["dune" "runtest" "-p" name "-j" jobs] {with-test & arch != "x86_32" & arch != "arm32"}
8+
["dune" "runtest" "-p" name "-j" jobs] {with-test & arch != "x86_32" & arch != "arm32" & ocaml:version < "5.1.0"}
99
]
1010
depends: [
1111
"ocaml" { >= "4.03.0" }

packages/eio_main/eio_main.0.6/opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ bug-reports: "https://github.com/ocaml-multicore/eio/issues"
1010
depends: [
1111
"dune" {>= "2.9"}
1212
"eio_linux" {= version & os = "linux"}
13-
"mdx" {>= "1.10.0" & with-test}
13+
"mdx" {>= "1.10.0" & < "2.3.1" & with-test}
1414
"eio_luv" {= version}
1515
"odoc" {with-doc}
1616
]

packages/eio_main/eio_main.0.7/opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ bug-reports: "https://github.com/ocaml-multicore/eio/issues"
1010
depends: [
1111
"dune" {>= "2.9"}
1212
"eio_linux" {= version & os = "linux"}
13-
"mdx" {>= "1.10.0" & with-test}
13+
"mdx" {>= "1.10.0" & < "2.3.1" & with-test}
1414
"eio_luv" {= version}
1515
"odoc" {with-doc}
1616
]

packages/eio_main/eio_main.0.8.1/opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ bug-reports: "https://github.com/ocaml-multicore/eio/issues"
1010
depends: [
1111
"dune" {>= "3.0"}
1212
"eio_linux" {= version & os = "linux"}
13-
"mdx" {>= "1.10.0" & with-test}
13+
"mdx" {>= "1.10.0" & < "2.3.1" & with-test}
1414
"eio_luv" {= version}
1515
"odoc" {with-doc}
1616
]

packages/eio_main/eio_main.0.9/opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ doc: "https://ocaml-multicore.github.io/eio/"
99
bug-reports: "https://github.com/ocaml-multicore/eio/issues"
1010
depends: [
1111
"dune" {>= "3.7"}
12-
"mdx" {>= "2.2.0" & with-test}
12+
"mdx" {>= "2.2.0" & < "2.3.1" & with-test}
1313
"eio_linux" {= version & os = "linux"}
1414
"eio_posix" {= version & os != "win32"}
1515
"eio_luv" {= version & (os = "win32" | with-test)}

packages/lwt_eio/lwt_eio.0.2/opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ depends: [
1212
"dune" {>= "2.9"}
1313
"eio" {>= "0.2" & < "0.11"}
1414
"lwt"
15-
"mdx" {>= "1.10.0" & with-test}
15+
"mdx" {>= "1.10.0" & < "2.3.1" & with-test}
1616
"eio_main" {with-test}
1717
"odoc" {with-doc}
1818
]

packages/lwt_eio/lwt_eio.0.3/opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ depends: [
1212
"dune" {>= "2.9"}
1313
"eio" {>= "0.7" & < "0.11"}
1414
"lwt"
15-
"mdx" {>= "1.10.0" & with-test}
15+
"mdx" {>= "1.10.0" & < "2.3.1" & with-test}
1616
"eio_main" {with-test}
1717
"odoc" {with-doc}
1818
]

packages/par_incr/par_incr.0.1/opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ build: [
3030
"-j"
3131
jobs
3232
"@install"
33-
"@runtest" {with-test}
33+
"@runtest" {with-test & ocaml:version < "5.1"}
3434
"@doc" {with-doc}
3535
]
3636
]

packages/uring/uring.0.4/opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ build: [
3131
"-j"
3232
jobs
3333
"@install"
34-
"@runtest" {with-test}
34+
"@runtest" {with-test & ocaml:version < "5.1"}
3535
"@doc" {with-doc}
3636
]
3737
]

0 commit comments

Comments
 (0)