Skip to content

Commit

Permalink
Add an upper bound on OCaml 5.2.0 (#430)
Browse files Browse the repository at this point in the history
Signed-off-by: Thibaut Mattio <[email protected]>
  • Loading branch information
tmattio authored Jun 20, 2023
1 parent f0496c9 commit 6baf858
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dune-project
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
(package
(name ppxlib)
(depends
(ocaml (and (>= 4.04.1) (<> 5.1.0~alpha1)))
(ocaml (and (and (>= 4.04.1) (< 5.2.0)) (<> 5.1.0~alpha1)))
(ocaml-compiler-libs (>= v0.11.0))
(ppx_derivers (>= 1.0))
(sexplib0 (>= v0.12))
Expand Down
2 changes: 1 addition & 1 deletion ppxlib.opam
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ doc: "https://ocaml-ppx.github.io/ppxlib/"
bug-reports: "https://github.com/ocaml-ppx/ppxlib/issues"
depends: [
"dune" {>= "2.7"}
"ocaml" {>= "4.04.1" & != "5.1.0~alpha1"}
"ocaml" {>= "4.04.1" & < "5.2.0" & != "5.1.0~alpha1"}
"ocaml-compiler-libs" {>= "v0.11.0"}
"ppx_derivers" {>= "1.0"}
"sexplib0" {>= "v0.12"}
Expand Down

0 comments on commit 6baf858

Please sign in to comment.