Skip to content

Commit

Permalink
build: relax the version constraint on odoc
Browse files Browse the repository at this point in the history
  • Loading branch information
favonia committed Oct 23, 2023
1 parent cc77e7b commit 2283755
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion asai-examples.opam
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ depends: [
"bwd" {>= "2.2"}
"menhir" {>= "20220210"}
"asai" {= version}
"odoc" {with-doc & >= "2.0"}
"odoc" {with-doc}
]
build: [
["dune" "subst"] {dev}
Expand Down
2 changes: 1 addition & 1 deletion asai-lsp.opam
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ depends: [
"eio_main" {>= "0.12"}
"lsp" {>= "1.15"}
"asai" {= version}
"odoc" {with-doc & >= "2.0"}
"odoc" {with-doc}
]
build: [
["dune" "subst"] {dev}
Expand Down
2 changes: 1 addition & 1 deletion asai.opam
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ depends: [
"bwd" {>= "2.2"}
"notty" {>= "0.2.3"}
"alcotest" {with-test & >= "1.5"}
"odoc" {with-doc & >= "2.0"}
"odoc" {with-doc}
]
build: [
["dune" "subst"] {dev}
Expand Down
6 changes: 3 additions & 3 deletions dune-project
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
(bwd (>= 2.2))
(notty (>= 0.2.3))
(alcotest (and :with-test (>= 1.5)))
(odoc (and :with-doc (>= 2.0)))))
(odoc :with-doc)))
(package
(name asai-lsp)
(synopsis "LSP handler for the package asai")
Expand All @@ -34,7 +34,7 @@
(eio_main (>= 0.12))
(lsp (>= 1.15))
(asai (= :version))
(odoc (and :with-doc (>= 2.0)))))
(odoc :with-doc)))
(package
(name asai-examples)
(synopsis "Examples of the package asai")
Expand All @@ -45,4 +45,4 @@
(bwd (>= 2.2))
(menhir (>= 20220210))
(asai (= :version))
(odoc (and :with-doc (>= 2.0)))))
(odoc :with-doc)))

0 comments on commit 2283755

Please sign in to comment.