Skip to content

Commit

Permalink
Add minimum versions to dependency package list.
Browse files Browse the repository at this point in the history
  • Loading branch information
zoj613 committed Aug 29, 2024
1 parent 174200a commit e25be9f
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 20 deletions.
20 changes: 10 additions & 10 deletions dune-project
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@
arrays, designed for use in parallel computing.")
(depends
dune
(ocaml (>= 4.14.2))
yojson
ezgzip
owl
stdint
checkseum
(ocaml (>= 4.14.0))
(yojson (>= 1.6.0))
(ezgzip (>= 0.2.0))
(stdint (>= 0.7.2))
(checkseum (>= 0.4.0))
(owl (>= 1.1))
(odoc :with-doc)
(ounit2 :with-test)
(ppx_deriving :with-test)
Expand All @@ -45,7 +45,7 @@
(synopsis "Synchronous API for Zarr.")
(depends
dune
(ocaml (>= 4.14.2))
(ocaml (>= 4.14.0))
(zarr (= :version))
(odoc :with-doc)
(ounit2 :with-test)
Expand All @@ -57,9 +57,9 @@
(synopsis "Lwt-aware API for Zarr.")
(depends
dune
(ocaml (>= 4.14.2))
(ocaml (>= 4.14.0))
(zarr (= :version))
lwt
(lwt (>= 2.5.1))
(odoc :with-doc)
(ounit2 :with-test)
(bisect_ppx
Expand All @@ -72,7 +72,7 @@
dune
(ocaml (>= 5.1.0))
(zarr (= :version))
eio_main
(eio_main (>= 1.0))
(odoc :with-doc)
(ounit2 :with-test)
(bisect_ppx
Expand Down
2 changes: 1 addition & 1 deletion zarr-eio.opam
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ depends: [
"dune" {>= "3.15"}
"ocaml" {>= "5.1.0"}
"zarr" {= version}
"eio_main"
"eio_main" {>= "1.0"}
"odoc" {with-doc}
"ounit2" {with-test}
"bisect_ppx" {dev & >= "2.5.0" & with-test}
Expand Down
4 changes: 2 additions & 2 deletions zarr-lwt.opam
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ doc: "https://zoj613.github.io/zarr-ml"
bug-reports: "https://github.com/zoj613/zarr-ml/issues"
depends: [
"dune" {>= "3.15"}
"ocaml" {>= "4.14.2"}
"ocaml" {>= "4.14.0"}
"zarr" {= version}
"lwt"
"lwt" {>= "2.5.1"}
"odoc" {with-doc}
"ounit2" {with-test}
"bisect_ppx" {dev & >= "2.5.0" & with-test}
Expand Down
2 changes: 1 addition & 1 deletion zarr-sync.opam
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ doc: "https://zoj613.github.io/zarr-ml"
bug-reports: "https://github.com/zoj613/zarr-ml/issues"
depends: [
"dune" {>= "3.15"}
"ocaml" {>= "4.14.2"}
"ocaml" {>= "4.14.0"}
"zarr" {= version}
"odoc" {with-doc}
"ounit2" {with-test}
Expand Down
12 changes: 6 additions & 6 deletions zarr.opam
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ doc: "https://zoj613.github.io/zarr-ml"
bug-reports: "https://github.com/zoj613/zarr-ml/issues"
depends: [
"dune" {>= "3.15"}
"ocaml" {>= "4.14.2"}
"yojson"
"ezgzip"
"owl"
"stdint"
"checkseum"
"ocaml" {>= "4.14.0"}
"yojson" {>= "1.6.0"}
"ezgzip" {>= "0.2.0"}
"stdint" {>= "0.7.2"}
"checkseum" {>= "0.4.0"}
"owl" {>= "1.1"}
"odoc" {with-doc}
"ounit2" {with-test}
"ppx_deriving" {with-test}
Expand Down

0 comments on commit e25be9f

Please sign in to comment.