Skip to content

Commit

Permalink
Remove version upper bound in opam file
Browse files Browse the repository at this point in the history
  • Loading branch information
vouillon committed Dec 4, 2024
1 parent eeab61c commit 3f22e30
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/build-wasm_of_ocaml.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ jobs:
- 5.00.x
- 5.01.x
- 5.02.x
- 5.3.0~beta2
separate_compilation:
- true
include:
Expand Down
2 changes: 1 addition & 1 deletion dune-project
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@
(description
"Wasm_of_ocaml is a compiler from OCaml bytecode to WebAssembly. It makes it possible to run pure OCaml programs in JavaScript environment like browsers and Node.js")
(depends
(ocaml (and (>= 4.14) (< 5.3)))
(ocaml (>= 4.14))
(js_of_ocaml (= :version))
(num :with-test)
(ppx_expect (and (>= v0.14.2) :with-test))
Expand Down
2 changes: 1 addition & 1 deletion wasm_of_ocaml-compiler.opam
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ doc: "https://ocsigen.org/js_of_ocaml/latest/manual/overview"
bug-reports: "https://github.com/ocsigen/js_of_ocaml/issues"
depends: [
"dune" {>= "3.17"}
"ocaml" {>= "4.14" & < "5.3"}
"ocaml" {>= "4.14"}
"js_of_ocaml" {= version}
"num" {with-test}
"ppx_expect" {>= "v0.14.2" & with-test}
Expand Down

0 comments on commit 3f22e30

Please sign in to comment.