chore: add upper bound on pbrt

This commit is contained in:
Simon Cruanes 2023-12-03 15:57:41 -05:00
parent 211c328498
commit e53cffbf12
No known key found for this signature in database
GPG key ID: EBFFF6F283F3A2B4
4 changed files with 6 additions and 6 deletions

View file

@ -31,7 +31,7 @@
(odoc :with-doc) (odoc :with-doc)
(alcotest :with-test) (alcotest :with-test)
(pbrt (pbrt
(>= 2.3)) (and (>= 2.3) (< 3.0)))
(ocaml-lsp-server :with-dev-setup) (ocaml-lsp-server :with-dev-setup)
(ocamlformat (ocamlformat
(and (and
@ -78,7 +78,7 @@
(opentelemetry (opentelemetry
(= :version)) (= :version))
(pbrt (pbrt
(>= 2.3)) (and (>= 2.3) (< 3.0)))
(odoc :with-doc) (odoc :with-doc)
(ezcurl (ezcurl
(>= 0.2.3)) (>= 0.2.3))
@ -114,7 +114,7 @@
(opentelemetry (opentelemetry
(= :version)) (= :version))
(pbrt (pbrt
(>= 2.2)) (and (>= 2.2) (< 3.0)))
(odoc :with-doc) (odoc :with-doc)
(lwt (lwt
(>= "5.3")) (>= "5.3"))

View file

@ -16,7 +16,7 @@ depends: [
"ocaml" {>= "4.08"} "ocaml" {>= "4.08"}
"mtime" {>= "1.4"} "mtime" {>= "1.4"}
"opentelemetry" {= version} "opentelemetry" {= version}
"pbrt" {>= "2.2"} "pbrt" {>= "2.2" & < "3.0"}
"odoc" {with-doc} "odoc" {with-doc}
"lwt" {>= "5.3"} "lwt" {>= "5.3"}
"lwt_ppx" {>= "2.0"} "lwt_ppx" {>= "2.0"}

View file

@ -16,7 +16,7 @@ depends: [
"ocaml" {>= "4.08"} "ocaml" {>= "4.08"}
"mtime" {>= "1.4"} "mtime" {>= "1.4"}
"opentelemetry" {= version} "opentelemetry" {= version}
"pbrt" {>= "2.3"} "pbrt" {>= "2.3" & < "3.0"}
"odoc" {with-doc} "odoc" {with-doc}
"ezcurl" {>= "0.2.3"} "ezcurl" {>= "0.2.3"}
"ocurl" "ocurl"

View file

@ -19,7 +19,7 @@ depends: [
"ambient-context" "ambient-context"
"odoc" {with-doc} "odoc" {with-doc}
"alcotest" {with-test} "alcotest" {with-test}
"pbrt" {>= "2.3"} "pbrt" {>= "2.3" & < "3.0"}
"ocaml-lsp-server" {with-dev-setup} "ocaml-lsp-server" {with-dev-setup}
"ocamlformat" {with-dev-setup & >= "0.24" & < "0.25"} "ocamlformat" {with-dev-setup & >= "0.24" & < "0.25"}
] ]