Skip to content

Commit

Permalink
Fix ocaml >= 4.14
Browse files Browse the repository at this point in the history
  • Loading branch information
dlesbre committed Apr 12, 2024
1 parent 249e137 commit 5342184
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
1 change: 0 additions & 1 deletion .github/workflows/ocaml.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ jobs:
# - macos-latest
# - windows-latest
ocaml-compiler:
- 4.10.x
- 4.14.x
- 5.1.x

Expand Down
3 changes: 2 additions & 1 deletion PatriciaTree.opam
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,11 @@ homepage: "https://github.com/codex-semantics-library/patricia-tree"
bug-reports:
"https://github.com/codex-semantics-library/patricia-tree/issues"
depends: [
"ocaml" {>= "4.14"}
"qcheck-core" {>= "0.21.2"}
"zarith" {>= "1.13"}
"dune" {>= "2.0"}
"ppx_inline_test"
"ppx_inline_test" {>= "v0.16.0"}
]
build: [
["dune" "subst"] {pinned}
Expand Down
5 changes: 4 additions & 1 deletion dune-project
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,13 @@
(synopsis
"Patricia Tree data structure in OCaml for maps and sets. Supports generic key-value pairs")
(depends
(ocaml
(>= 4.14))
(qcheck-core
(>= "0.21.2"))
(zarith
(>= "1.13"))
(dune
(>= "2.0"))
ppx_inline_test))
(ppx_inline_test
(>= "v0.16.0"))))

0 comments on commit 5342184

Please sign in to comment.