From 3921cc58fecda57f9ca27e519a0e57be696acfdb Mon Sep 17 00:00:00 2001 From: Lukasz Stafiniak Date: Tue, 17 Sep 2024 14:09:32 +0200 Subject: [PATCH] Fix internal dependency propagation, try 2 --- dune-project | 4 +++- neural_nets_lib.opam | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/dune-project b/dune-project index 5264bef..8747d4e 100644 --- a/dune-project +++ b/dune-project @@ -100,7 +100,9 @@ ; (ocamlformat ; (>= 0.26.2) ; :with-dev-setup) - (arrayjit (= 0.4.1)) + ; Here we mean (arrayjit (= 0.4.1)), but we must be compatible with arrayjit.dev during installation. + (arrayjit + (>= 0.4.1)) printbox printbox-text ocannl_npy diff --git a/neural_nets_lib.opam b/neural_nets_lib.opam index 6f856ee..9bd7f93 100644 --- a/neural_nets_lib.opam +++ b/neural_nets_lib.opam @@ -17,7 +17,7 @@ depends: [ "dune" {>= "3.11"} "base" {>= "v0.17.0"} "core" {>= "v0.17.0"} - "arrayjit" {= "0.4.1"} + "arrayjit" {>= "0.4.1"} "printbox" "printbox-text" "ocannl_npy"