Skip to content

Commit

Permalink
chore: add upper bound on pbrt
Browse files Browse the repository at this point in the history
  • Loading branch information
c-cube committed Dec 3, 2023
1 parent 211c328 commit e53cffb
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions dune-project
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
(odoc :with-doc)
(alcotest :with-test)
(pbrt
(>= 2.3))
(and (>= 2.3) (< 3.0)))
(ocaml-lsp-server :with-dev-setup)
(ocamlformat
(and
Expand Down Expand Up @@ -78,7 +78,7 @@
(opentelemetry
(= :version))
(pbrt
(>= 2.3))
(and (>= 2.3) (< 3.0)))
(odoc :with-doc)
(ezcurl
(>= 0.2.3))
Expand Down Expand Up @@ -114,7 +114,7 @@
(opentelemetry
(= :version))
(pbrt
(>= 2.2))
(and (>= 2.2) (< 3.0)))
(odoc :with-doc)
(lwt
(>= "5.3"))
Expand Down
2 changes: 1 addition & 1 deletion opentelemetry-client-cohttp-lwt.opam
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ depends: [
"ocaml" {>= "4.08"}
"mtime" {>= "1.4"}
"opentelemetry" {= version}
"pbrt" {>= "2.2"}
"pbrt" {>= "2.2" & < "3.0"}
"odoc" {with-doc}
"lwt" {>= "5.3"}
"lwt_ppx" {>= "2.0"}
Expand Down
2 changes: 1 addition & 1 deletion opentelemetry-client-ocurl.opam
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ depends: [
"ocaml" {>= "4.08"}
"mtime" {>= "1.4"}
"opentelemetry" {= version}
"pbrt" {>= "2.3"}
"pbrt" {>= "2.3" & < "3.0"}
"odoc" {with-doc}
"ezcurl" {>= "0.2.3"}
"ocurl"
Expand Down
2 changes: 1 addition & 1 deletion opentelemetry.opam
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ depends: [
"ambient-context"
"odoc" {with-doc}
"alcotest" {with-test}
"pbrt" {>= "2.3"}
"pbrt" {>= "2.3" & < "3.0"}
"ocaml-lsp-server" {with-dev-setup}
"ocamlformat" {with-dev-setup & >= "0.24" & < "0.25"}
]
Expand Down

0 comments on commit e53cffb

Please sign in to comment.