Skip to content

Commit

Permalink
Require js_of_ocaml >= 6 (#11487)
Browse files Browse the repository at this point in the history
It works with older versions but the error message changed in version 6,
so the test fail due to the wording of the error. This makes sure that
people updating their system using `make dev-switch` will get their
possibly existing installation updated.

Signed-off-by: Marek Kubica <[email protected]>
  • Loading branch information
Leonidas-from-XIV authored Feb 18, 2025
1 parent 17646fd commit c54ffd3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions dune.opam
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ depends: [
"lwt" { with-dev-setup & os != "win32" }
"cinaps" { with-dev-setup }
"csexp" { with-dev-setup & >= "1.3.0" }
"js_of_ocaml" { with-dev-setup & os != "win32" }
"js_of_ocaml-compiler" { with-dev-setup & os != "win32" }
"js_of_ocaml" { with-dev-setup & >= "6.0.1" & os != "win32" }
"js_of_ocaml-compiler" { with-dev-setup & >= "6.0.1" & os != "win32" }
"mdx" { with-dev-setup & >= "2.3.0" & os != "win32" }
"menhir" { with-dev-setup & os != "win32" }
"ocamlfind" { with-dev-setup & os != "win32" }
Expand Down
4 changes: 2 additions & 2 deletions dune.opam.template
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ depends: [
"lwt" { with-dev-setup & os != "win32" }
"cinaps" { with-dev-setup }
"csexp" { with-dev-setup & >= "1.3.0" }
"js_of_ocaml" { with-dev-setup & os != "win32" }
"js_of_ocaml-compiler" { with-dev-setup & os != "win32" }
"js_of_ocaml" { with-dev-setup & >= "6.0.1" & os != "win32" }
"js_of_ocaml-compiler" { with-dev-setup & >= "6.0.1" & os != "win32" }
"mdx" { with-dev-setup & >= "2.3.0" & os != "win32" }
"menhir" { with-dev-setup & os != "win32" }
"ocamlfind" { with-dev-setup & os != "win32" }
Expand Down

0 comments on commit c54ffd3

Please sign in to comment.