fix: upper bound on ppxlib

This commit is contained in:
Simon Cruanes 2025-03-19 21:35:08 -04:00
parent 46c9a7d66d
commit 528cc4b7a6
No known key found for this signature in database
GPG key ID: EBFFF6F283F3A2B4
2 changed files with 2 additions and 2 deletions

View file

@ -39,7 +39,7 @@
(ocaml (ocaml
(>= 4.12)) ; we use __FUNCTION__ (>= 4.12)) ; we use __FUNCTION__
(ppxlib (ppxlib
(>= 0.28)) (and (>= 0.28) (< 0.36)))
(trace (trace
(= :version)) (= :version))
(trace-tef (trace-tef

View file

@ -10,7 +10,7 @@ homepage: "https://github.com/c-cube/ocaml-trace"
bug-reports: "https://github.com/c-cube/ocaml-trace/issues" bug-reports: "https://github.com/c-cube/ocaml-trace/issues"
depends: [ depends: [
"ocaml" {>= "4.12"} "ocaml" {>= "4.12"}
"ppxlib" {>= "0.28"} "ppxlib" {>= "0.28" & < "0.36"}
"trace" {= version} "trace" {= version}
"trace-tef" {= version & with-test} "trace-tef" {= version & with-test}
"dune" {>= "2.9"} "dune" {>= "2.9"}