Skip to content

Commit

Permalink
Update and fix dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
lukstafi committed Jan 2, 2025
1 parent d4c9644 commit 8689dec
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 15 deletions.
6 changes: 3 additions & 3 deletions arrayjit.opam
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ depends: [
"base" {>= "v0.17.0"}
"ctypes" {>= "0.23"}
"ctypes-foreign" {>= "0.23"}
"printbox"
"printbox-text"
"printbox" {>= "0.12"}
"printbox-text" {>= "0.12"}
"ocannl_npy"
"stdio"
"sexplib"
Expand All @@ -33,7 +33,7 @@ depends: [
"ppx_string"
"ppx_variants_conv"
"ppx_expect"
"ppx_minidebug" {>= "2.0.0"}
"ppx_minidebug" {>= "2.0.3"}
"odoc" {with-doc}
]
depopts: [
Expand Down
21 changes: 13 additions & 8 deletions dune-project
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,10 @@
; (ocamlformat
; (>= 0.27.0)
; :with-dev-setup)
printbox
printbox-text
(printbox
(>= 0.12))
(printbox-text
(>= 0.12))
ocannl_npy
stdio
sexplib
Expand All @@ -77,7 +79,7 @@
ppx_variants_conv
ppx_expect
(ppx_minidebug
(>= 2.0.0)))
(>= 2.0.3)))
(depopts
(cudajit
(>= 0.6.1))
Expand Down Expand Up @@ -109,17 +111,20 @@
; :with-dev-setup)
; Here we mean (arrayjit (= 0.4.1)), but we must be compatible with arrayjit.dev during installation.
(arrayjit
(>= 0.4.1))
printbox
printbox-text
(>= 0.5.1))
(printbox
(>= 0.12))
(printbox-text
(>= 0.12))
(printbox-ext-plot
(>= 0.12))
ocannl_npy
(angstrom
(>= 0.15))
stdio
sexplib
num
time_now

ppxlib
ppx_compare
ppx_fields_conv
Expand All @@ -130,7 +135,7 @@
ppx_variants_conv
ppx_expect
(ppx_minidebug
(>= 2.0.0))
(>= 2.0.3))
; Cannot make it (patdiff :with-test), because `dune build -p neural_nets_lib @install`
; builds the tutorials target from dune/test, despite it being inline_tests!
(patdiff
Expand Down
1 change: 1 addition & 0 deletions lib/dune
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
base
printbox
printbox-text
printbox-ext-plot
npy
angstrom
stdio
Expand Down
9 changes: 5 additions & 4 deletions neural_nets_lib.opam
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,10 @@ depends: [
"ocaml" {>= "5.2.0"}
"dune" {>= "3.11"}
"base" {>= "v0.17.0"}
"arrayjit" {>= "0.4.1"}
"printbox"
"printbox-text"
"arrayjit" {>= "0.5.1"}
"printbox" {>= "0.12"}
"printbox-text" {>= "0.12"}
"printbox-ext-plot" {>= "0.12"}
"ocannl_npy"
"angstrom" {>= "0.15"}
"stdio"
Expand All @@ -34,7 +35,7 @@ depends: [
"ppx_string"
"ppx_variants_conv"
"ppx_expect"
"ppx_minidebug" {>= "2.0.0"}
"ppx_minidebug" {>= "2.0.3"}
"patdiff" {>= "v0.15.0"}
"odoc" {with-doc}
"md2mld" {with-doc}
Expand Down

0 comments on commit 8689dec

Please sign in to comment.