Skip to content

Commit 7b14bed

Browse files
committed
Fix constraints
cc @tmattio Signed-off-by: Rudi Grinberg <[email protected]>
1 parent f5c55e2 commit 7b14bed

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dune-project

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ possible and does not make any assumptions about IO.
5757
(ocamlformat :with-test)
5858
(ocamlfind (>= 1.5.2))
5959
(odoc :with-doc)
60-
(ocaml (>= 4.12))))
60+
(ocaml (and (>= 4.12) (< 4.13)))))
6161

6262
(package
6363
(name jsonrpc)

ocaml-lsp-server.opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ depends: [
2727
"ocamlformat" {with-test}
2828
"ocamlfind" {>= "1.5.2"}
2929
"odoc" {with-doc}
30-
"ocaml" {>= "4.12"}
30+
"ocaml" {>= "4.12" & < "4.13"}
3131
]
3232
dev-repo: "git+https://github.com/ocaml/ocaml-lsp.git"
3333
build: [

0 commit comments

Comments
 (0)