Skip to content

Commit

Permalink
revert to < and >= constraints
Browse files Browse the repository at this point in the history
  • Loading branch information
raphael-proust committed Jan 19, 2024
1 parent 4308c8e commit ecd6f3b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/zarith_stubs_js/zarith_stubs_js.v0.12.0/opam
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ depends: [
"dune" {>= "1.5.1"}
]
# The conflict is a run-time failure (extract_small) when versions do not match:
conflicts: [ "zarith" { >= "1.13" } ]
conflicts: [ "zarith" {< "1.12" | >= "1.13" } ]
synopsis: "Javascripts stubs for the Zarith library"
description: "
This library contains no ocaml code, but instead implements
Expand Down
2 changes: 1 addition & 1 deletion packages/zarith_stubs_js/zarith_stubs_js.v0.13.0/opam
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ depends: [
"dune" {>= "1.5.1"}
]
# The conflict is a run-time failure (extract_small) when versions do not match:
conflicts: [ "zarith" { >= "1.13" } ]
conflicts: [ "zarith" {< "1.12" | >= "1.13" } ]
synopsis: "Javascripts stubs for the Zarith library"
description: "
This library contains no ocaml code, but instead implements
Expand Down
2 changes: 1 addition & 1 deletion packages/zarith_stubs_js/zarith_stubs_js.v0.15.0/opam
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ depends: [
]
# The conflict is a run-time failure when versions do not match:
# There are two separate failures for <1.12 and >1.12
conflicts: [ "zarith" {!= "1.12" } ]
conflicts: [ "zarith" {< "1.12" | >= "1.13" } ]
synopsis: "Javascripts stubs for the Zarith library"
description: "
This library contains no ocaml code, but instead implements
Expand Down
2 changes: 1 addition & 1 deletion packages/zarith_stubs_js/zarith_stubs_js.v0.16.0/opam
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ depends: [
"dune" {>= "2.0.0"}
]
# The conflict is a run-time failure (extract_small) when versions do not match:
conflicts: [ "zarith" { >= "1.13" } ]
conflicts: [ "zarith" {< "1.12" | >= "1.13" } ]
synopsis: "Javascripts stubs for the Zarith library"
description: "
This library contains no ocaml code, but instead implements
Expand Down

0 comments on commit ecd6f3b

Please sign in to comment.