Skip to content

Commit

Permalink
GT should work on OCaml 5.2 and 4.14.x
Browse files Browse the repository at this point in the history
Signed-off-by: Kakadu <[email protected]>
  • Loading branch information
Kakadu committed Jul 30, 2024
1 parent 41ad4d4 commit 2435ea8
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion GT.opam
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ homepage: "https://github.com/PLTools/GT"
bug-reports: "https://github.com/PLTools/GT/issues"
depends: [
"ppxlib" {<= "0.32.1"}
"ocaml" {>= "4.13"}
"ocaml" {>= "4.13" & < "5.0.0" | >= "5.2.0" & < "5.3.0"}
"camlp5" {>= "8.00.05"}
"dune" {>= "2.8"}
"ocamlfind" {build}
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ promote:

celan: clean
clean:
$(RM) -r _build
$(RM) -r _build _coverage

rebuild: clean
$(MAKE) all tests
Expand Down
8 changes: 7 additions & 1 deletion dune-project
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,13 @@
(ppxlib
(<= "0.32.1"))
(ocaml
(>= "4.13"))
(or
(and
(>= "4.13")
(< "5.0.0"))
(and
(>= "5.2.0")
(< "5.3.0"))))
(camlp5
(>= "8.00.05"))
dune
Expand Down

0 comments on commit 2435ea8

Please sign in to comment.