Skip to content

Commit

Permalink
Add missing lower-bound constraint to the OCaml compiler (#7396)
Browse files Browse the repository at this point in the history
Signed-off-by: Kate <kit-ty-kate@outlook.com>
  • Loading branch information
kit-ty-kate authored Mar 24, 2023
1 parent ece4161 commit af02feb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dune.opam
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ build: [
depends: [
# Please keep the lower bound in sync with .github/workflows/workflow.yml,
# dune-project and min_ocaml_version in bootstrap.ml
("ocaml" {>= "4.08"} | ("ocaml" {< "4.08~~"} & "ocamlfind-secondary"))
("ocaml" {>= "4.08"} | ("ocaml" {>= "4.02" & < "4.08~~"} & "ocamlfind-secondary"))
"base-unix"
"base-threads"
]
2 changes: 1 addition & 1 deletion dune.opam.template
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ build: [
depends: [
# Please keep the lower bound in sync with .github/workflows/workflow.yml,
# dune-project and min_ocaml_version in bootstrap.ml
("ocaml" {>= "4.08"} | ("ocaml" {< "4.08~~"} & "ocamlfind-secondary"))
("ocaml" {>= "4.08"} | ("ocaml" {>= "4.02" & < "4.08~~"} & "ocamlfind-secondary"))
"base-unix"
"base-threads"
]

0 comments on commit af02feb

Please sign in to comment.