Skip to content

Commit 3a50dc3

Browse files
committed
Fix ppx_cstubs version constraints
The one in the opam repo has two version constraints which make it impossible to use with OCaml 5. The opam file in the ppx_cstubs repo at the 0.7 tag doesn't have them (https://github.com/fdopen/ppx_cstubs/blob/0.7.0/ppx_cstubs.opam). This PR removes the version constraint to fix this, see relevant discussion here fdopen/ppx_cstubs#10
1 parent eb733d3 commit 3a50dc3

File tree

1 file changed

+2
-2
lines changed
  • packages/ppx_cstubs/ppx_cstubs.0.7.0

1 file changed

+2
-2
lines changed

packages/ppx_cstubs/ppx_cstubs.0.7.0/opam

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ build: [
1111
]
1212
depends: [
1313
"bigarray-compat"
14-
"ctypes" {>= "0.13.0" & < "0.21"}
14+
"ctypes" {>= "0.13.0"}
1515
"integers"
1616
"num"
1717
"result"
1818
"containers" {>= "2.2"}
1919
"cppo" {build & >= "1.3"}
20-
"ocaml" {>= "4.04.2" & < "4.15"}
20+
"ocaml" {>= "4.04.2"}
2121
"ppxlib" {>= "0.22.0"}
2222
"ocamlfind" {>= "1.7.2"} # not only a build dependency, it depends on findlib.top
2323
"dune" {>= "1.6"}

0 commit comments

Comments
 (0)