Skip to content

Commit 3921cc5

Browse files
committed
Fix internal dependency propagation, try 2
1 parent 87bcf98 commit 3921cc5

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

dune-project

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,9 @@
100100
; (ocamlformat
101101
; (>= 0.26.2)
102102
; :with-dev-setup)
103-
(arrayjit (= 0.4.1))
103+
; Here we mean (arrayjit (= 0.4.1)), but we must be compatible with arrayjit.dev during installation.
104+
(arrayjit
105+
(>= 0.4.1))
104106
printbox
105107
printbox-text
106108
ocannl_npy

neural_nets_lib.opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ depends: [
1717
"dune" {>= "3.11"}
1818
"base" {>= "v0.17.0"}
1919
"core" {>= "v0.17.0"}
20-
"arrayjit" {= "0.4.1"}
20+
"arrayjit" {>= "0.4.1"}
2121
"printbox"
2222
"printbox-text"
2323
"ocannl_npy"

0 commit comments

Comments
 (0)