Skip to content

Commit

Permalink
fix CI: opam lowerbounds lint
Browse files Browse the repository at this point in the history
  • Loading branch information
art-w committed Sep 4, 2024
1 parent 29dddea commit e1a8514
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion cohttp-curl-async.opam
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ doc: "https://mirage.github.io/ocaml-cohttp/"
bug-reports: "https://github.com/mirage/ocaml-cohttp/issues"
depends: [
"dune" {>= "3.0"}
"ocurl"
"ocurl" {>= "0.9.2"}
"http" {= version}
"stringext"
"cohttp-curl" {= version}
Expand Down
2 changes: 1 addition & 1 deletion cohttp-curl-lwt.opam
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ bug-reports: "https://github.com/mirage/ocaml-cohttp/issues"
depends: [
"dune" {>= "3.0"}
"ocaml" {>= "4.08"}
"ocurl"
"ocurl" {>= "0.9.2"}
"http" {= version}
"cohttp-curl" {= version}
"stringext"
Expand Down
2 changes: 1 addition & 1 deletion cohttp-curl.opam
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ bug-reports: "https://github.com/mirage/ocaml-cohttp/issues"
depends: [
"dune" {>= "3.0"}
"ocaml" {>= "4.08"}
"ocurl"
"ocurl" {>= "0.9.2"}
"http" {= version}
"stringext"
"odoc" {with-doc}
Expand Down
6 changes: 3 additions & 3 deletions dune-project
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@
(depends
(ocaml
(>= 4.08))
ocurl
(ocurl (>= 0.9.2))
(http
(= :version))
stringext))
Expand All @@ -277,7 +277,7 @@
(depends
(ocaml
(>= 4.08))
ocurl
(ocurl (>= 0.9.2))
(http
(= :version))
(cohttp-curl
Expand Down Expand Up @@ -312,7 +312,7 @@
(description
"An HTTP client that relies on Curl + Async for the backend. Does not require\nconduit for SSL.")
(depends
ocurl
(ocurl (>= 0.9.2))
(http
(= :version))
stringext
Expand Down

0 comments on commit e1a8514

Please sign in to comment.