Skip to content

Commit

Permalink
Relax lower bound for JS packages (targeting 4.14 compatibility)
Browse files Browse the repository at this point in the history
  • Loading branch information
mbarbin committed Oct 27, 2024
1 parent 4808dc5 commit 8042951
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 24 deletions.
24 changes: 12 additions & 12 deletions dune-project
Original file line number Diff line number Diff line change
Expand Up @@ -25,54 +25,54 @@
(>= 4.14))
(sexplib0
(and
(>= v0.17)
(>= v0.16)
(< v0.18)))))

(package
(name provider-tests)
(synopsis "Tests for provider")
(depends
(ocaml
(>= 5.2))
(>= 4.14))
(base
(and
(>= v0.17)
(>= v0.16)
(< v0.18)))
(expect_test_helpers_core
(and
(>= v0.17)
(>= v0.16)
(< v0.18)))
(ppx_compare
(and
(>= v0.17)
(>= v0.16)
(< v0.18)))
(ppx_enumerate
(and
(>= v0.17)
(>= v0.16)
(< v0.18)))
(ppx_expect
(and
(>= v0.17)
(>= v0.16)
(< v0.18)))
(ppx_hash
(and
(>= v0.17)
(>= v0.16)
(< v0.18)))
(ppx_here
(and
(>= v0.17)
(>= v0.16)
(< v0.18)))
(ppx_let
(and
(>= v0.17)
(>= v0.16)
(< v0.18)))
(ppx_sexp_conv
(and
(>= v0.17)
(>= v0.16)
(< v0.18)))
(ppx_sexp_value
(and
(>= v0.17)
(>= v0.16)
(< v0.18)))
(ppxlib
(>= 0.33))
Expand Down
22 changes: 11 additions & 11 deletions provider-tests.opam
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,17 @@ doc: "https://mbarbin.github.io/provider/"
bug-reports: "https://github.com/mbarbin/provider/issues"
depends: [
"dune" {>= "3.16"}
"ocaml" {>= "5.2"}
"base" {>= "v0.17" & < "v0.18"}
"expect_test_helpers_core" {>= "v0.17" & < "v0.18"}
"ppx_compare" {>= "v0.17" & < "v0.18"}
"ppx_enumerate" {>= "v0.17" & < "v0.18"}
"ppx_expect" {>= "v0.17" & < "v0.18"}
"ppx_hash" {>= "v0.17" & < "v0.18"}
"ppx_here" {>= "v0.17" & < "v0.18"}
"ppx_let" {>= "v0.17" & < "v0.18"}
"ppx_sexp_conv" {>= "v0.17" & < "v0.18"}
"ppx_sexp_value" {>= "v0.17" & < "v0.18"}
"ocaml" {>= "4.14"}
"base" {>= "v0.16" & < "v0.18"}
"expect_test_helpers_core" {>= "v0.16" & < "v0.18"}
"ppx_compare" {>= "v0.16" & < "v0.18"}
"ppx_enumerate" {>= "v0.16" & < "v0.18"}
"ppx_expect" {>= "v0.16" & < "v0.18"}
"ppx_hash" {>= "v0.16" & < "v0.18"}
"ppx_here" {>= "v0.16" & < "v0.18"}
"ppx_let" {>= "v0.16" & < "v0.18"}
"ppx_sexp_conv" {>= "v0.16" & < "v0.18"}
"ppx_sexp_value" {>= "v0.16" & < "v0.18"}
"ppxlib" {>= "0.33"}
"provider" {= version}
"odoc" {with-doc}
Expand Down
2 changes: 1 addition & 1 deletion provider.opam
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ bug-reports: "https://github.com/mbarbin/provider/issues"
depends: [
"dune" {>= "3.16"}
"ocaml" {>= "4.14"}
"sexplib0" {>= "v0.17" & < "v0.18"}
"sexplib0" {>= "v0.16" & < "v0.18"}
"odoc" {with-doc}
]
build: [
Expand Down

0 comments on commit 8042951

Please sign in to comment.