Skip to content

Commit

Permalink
Fix ppx_cstubs version constraints
Browse files Browse the repository at this point in the history
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
  • Loading branch information
tjammer committed Apr 14, 2023
1 parent eb733d3 commit 3a50dc3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/ppx_cstubs/ppx_cstubs.0.7.0/opam
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ build: [
]
depends: [
"bigarray-compat"
"ctypes" {>= "0.13.0" & < "0.21"}
"ctypes" {>= "0.13.0"}
"integers"
"num"
"result"
"containers" {>= "2.2"}
"cppo" {build & >= "1.3"}
"ocaml" {>= "4.04.2" & < "4.15"}
"ocaml" {>= "4.04.2"}
"ppxlib" {>= "0.22.0"}
"ocamlfind" {>= "1.7.2"} # not only a build dependency, it depends on findlib.top
"dune" {>= "1.6"}
Expand Down

0 comments on commit 3a50dc3

Please sign in to comment.