Skip to content

Commit

Permalink
Opam: Fix constraints
Browse files Browse the repository at this point in the history
  • Loading branch information
saroupille committed May 12, 2024
1 parent b5006a3 commit a42c50d
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 12 deletions.
6 changes: 3 additions & 3 deletions bam-ppx.opam
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ homepage: "https://github.com/francoisthire/bam"
doc: "https://francoisthire.github.io/bam/"
bug-reports: "https://github.com/francoisthire/bam/issues"
depends: [
"ocaml"
"dune" {>= "3.7"}
"ppxlib" {<= "0.32.0"}
"ocaml" {>= "4.14" & < "5.2"}
"dune" {>= "3.7" & >= "3.7"}
"ppxlib" {>= "0.32.0"}
"dmap" {>= "0.5"}
"odoc" {with-doc}
]
Expand Down
2 changes: 1 addition & 1 deletion bam.opam
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ depends: [
"pringo"
"zarith" {>= "1.13"}
"odoc" {with-doc}
"tezt" {with-test}
"tezt" {>= "4.0" & with-test}
]
build: [
["dune" "subst"] {dev}
Expand Down
22 changes: 16 additions & 6 deletions dune-project
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,10 @@
(zarith
(>= 1.13))
(odoc :with-doc)
(tezt :with-test))
(tezt
(and
(>= 4.0)
:with-test)))
(tags
(test pbt shrinking internal)))

Expand All @@ -39,10 +42,14 @@
(description
"Provides a way to automatically get generators for a given type")
(depends
ocaml
dune
(ocaml
(and
(>= 4.14)
(< 5.2)))
(dune
(>= 3.7))
(ppxlib
(<= 0.32.0))
(>= 0.32.0))
(dmap
(>= 0.5))
(odoc :with-doc))
Expand All @@ -55,9 +62,12 @@
(description "Provides a way to register PBT tests with Tezt")
(depends
ocaml
dune
tezt
(dune
(>= 3.7))
(tezt
(>= 4.0))
bam
bam-ppx
(mtime
(>= 2.0))
(odoc :with-doc))
Expand Down
5 changes: 3 additions & 2 deletions tezt-bam.opam
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,10 @@ doc: "https://francoisthire.github.io/bam/"
bug-reports: "https://github.com/francoisthire/bam/issues"
depends: [
"ocaml"
"dune" {>= "3.7"}
"tezt"
"dune" {>= "3.7" & >= "3.7"}
"tezt" {>= "4.0"}
"bam"
"bam-ppx"
"mtime" {>= "2.0"}
"odoc" {with-doc}
]
Expand Down

0 comments on commit a42c50d

Please sign in to comment.