Skip to content

Commit

Permalink
Add missing upper bounds on ortac packages
Browse files Browse the repository at this point in the history
  • Loading branch information
n-osborne committed Oct 9, 2024
1 parent a8dfa0c commit c0e9639
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
12 changes: 6 additions & 6 deletions dune-project
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
(ppxlib (>= 0.26.0))
(gospel (= 0.3.0))
(alcotest (and :with-test (>= 0.8.1)))
(ortac-runtime :with-test))
(ortac-runtime (and :with-test (= :version))))
(sites
(lib plugins))
(conflicts
Expand Down Expand Up @@ -82,8 +82,8 @@
(ppxlib (>= 0.26.0))
(gospel (= 0.3.0))
(alcotest (and :with-test (>= 0.8.1)))
ortac-core
(ortac-runtime :with-test)))
(ortac-core (= :version))
(ortac-runtime (and :with-test (= :version)))))

; Monolith plugin
(package
Expand All @@ -108,7 +108,7 @@
(gospel (= 0.3.0))
(monolith (and :with-test (>= 20201026)))
(pprint :with-test)
ortac-core
(ortac-core (= :version))
ortac-wrapper
(ortac-runtime-monolith :with-test)))

Expand All @@ -129,7 +129,7 @@
(monolith (>= 20201026))
pprint
(fmt (>= 0.9.0))
ortac-runtime))
(ortac-runtime (= :version))))

; QCheck-STM plugin
(package
Expand Down Expand Up @@ -175,7 +175,7 @@
fmt
(cmdliner (>= 1.1.0))
(ortac-core (= :version))
(ortac-qcheck-stm :with-test)))
(ortac-qcheck-stm (and :with-test (= :version)))))

(package
(name ortac-runtime-qcheck-stm)
Expand Down
2 changes: 1 addition & 1 deletion ortac-core.opam
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ depends: [
"ppxlib" {>= "0.26.0"}
"gospel" {= "0.3.0"}
"alcotest" {with-test & >= "0.8.1"}
"ortac-runtime" {with-test}
"ortac-runtime" {with-test & = version}
"odoc" {with-doc}
]
conflicts: [
Expand Down
2 changes: 1 addition & 1 deletion ortac-dune.opam
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ depends: [
"fmt"
"cmdliner" {>= "1.1.0"}
"ortac-core" {= version}
"ortac-qcheck-stm" {with-test}
"ortac-qcheck-stm" {with-test & = version}
"odoc" {with-doc}
]
build: [
Expand Down
2 changes: 1 addition & 1 deletion ortac-monolith.opam
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ depends: [
"gospel" {= "0.3.0"}
"monolith" {with-test & >= "20201026"}
"pprint" {with-test}
"ortac-core"
"ortac-core" {= version}
"ortac-wrapper"
"ortac-runtime-monolith" {with-test}
"odoc" {with-doc}
Expand Down
2 changes: 1 addition & 1 deletion ortac-runtime-monolith.opam
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ depends: [
"monolith" {>= "20201026"}
"pprint"
"fmt" {>= "0.9.0"}
"ortac-runtime"
"ortac-runtime" {= version}
"odoc" {with-doc}
]
build: [
Expand Down
4 changes: 2 additions & 2 deletions ortac-wrapper.opam
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ depends: [
"ppxlib" {>= "0.26.0"}
"gospel" {= "0.3.0"}
"alcotest" {with-test & >= "0.8.1"}
"ortac-core"
"ortac-runtime" {with-test}
"ortac-core" {= version}
"ortac-runtime" {with-test & = version}
"odoc" {with-doc}
]
build: [
Expand Down

0 comments on commit c0e9639

Please sign in to comment.