Skip to content

Commit

Permalink
opam upperbounds on dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
art-w committed Feb 8, 2025
1 parent c627e4a commit 18ea894
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- ubuntu-latest
- macos-latest
ocaml-compiler:
- "5"
- "5.2"
local-packages:
- |
*.opam
Expand Down
2 changes: 1 addition & 1 deletion cohttp-async.opam
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ depends: [
"ocaml" {>= "4.14"}
"http" {= version}
"cohttp" {= version}
"async_kernel" {>= "v0.16.0"}
"async_kernel" {>= "v0.16.0" & < "v0.17.0"}
"async_unix" {>= "v0.16.0"}
"async" {>= "v0.16.0"}
"base" {>= "v0.16.0"}
Expand Down
1 change: 1 addition & 0 deletions cohttp-eio.opam
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ depends: [
"logs"
"uri"
"tls-eio" {with-test & >= "1.0.0"}
"mirage-crypto-rng" {with-test & < "1.2.0"}
"mirage-crypto-rng-eio" {with-test & >= "0.11.2"}
"ca-certs" {with-test & >= "1.0.0"}
"fmt"
Expand Down
3 changes: 2 additions & 1 deletion dune-project
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@
(cohttp
(= :version))
(async_kernel
(>= v0.16.0))
(and (>= v0.16.0) (< v0.17.0)))
(async_unix
(>= v0.16.0))
(async
Expand Down Expand Up @@ -382,6 +382,7 @@
logs
uri
(tls-eio (and :with-test (>= 1.0.0)))
(mirage-crypto-rng (and :with-test (< 1.2.0)))
(mirage-crypto-rng-eio (and :with-test (>= 0.11.2)))
(ca-certs (and :with-test (>= "1.0.0")))
fmt
Expand Down

0 comments on commit 18ea894

Please sign in to comment.