Skip to content

Commit 3f22e30

Browse files
committed
Remove version upper bound in opam file
1 parent eeab61c commit 3f22e30

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.github/workflows/build-wasm_of_ocaml.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ jobs:
2020
- 5.00.x
2121
- 5.01.x
2222
- 5.02.x
23+
- 5.3.0~beta2
2324
separate_compilation:
2425
- true
2526
include:

dune-project

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@
139139
(description
140140
"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")
141141
(depends
142-
(ocaml (and (>= 4.14) (< 5.3)))
142+
(ocaml (>= 4.14))
143143
(js_of_ocaml (= :version))
144144
(num :with-test)
145145
(ppx_expect (and (>= v0.14.2) :with-test))

wasm_of_ocaml-compiler.opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ doc: "https://ocsigen.org/js_of_ocaml/latest/manual/overview"
1313
bug-reports: "https://github.com/ocsigen/js_of_ocaml/issues"
1414
depends: [
1515
"dune" {>= "3.17"}
16-
"ocaml" {>= "4.14" & < "5.3"}
16+
"ocaml" {>= "4.14"}
1717
"js_of_ocaml" {= version}
1818
"num" {with-test}
1919
"ppx_expect" {>= "v0.14.2" & with-test}

0 commit comments

Comments
 (0)