Skip to content

Commit a93783f

Browse files
committed
pprint package lower bound
Signed-off-by: Lukasz Stafiniak <lukstafi@gmail.com>
1 parent bef4ee5 commit a93783f

File tree

3 files changed

+13
-5
lines changed

3 files changed

+13
-5
lines changed

arrayjit.opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ depends: [
2020
"ctypes-foreign" {>= "0.23"}
2121
"printbox" {>= "0.12"}
2222
"printbox-text" {>= "0.12"}
23-
"pprint"
23+
"pprint" {>= "20230830"}
2424
"stdio"
2525
"sexplib"
2626
"num"

dune-project

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
(lang dune 3.18)
22

33
(using ctypes 0.3)
4+
45
(using dune_site 0.1)
56

67
(using directory-targets 0.1)
@@ -51,13 +52,15 @@
5152
; FIXME: Depend on printbox-text > 0.12.0 when it is released.
5253
(printbox-text
5354
(>= 0.12))
54-
pprint
55+
(pprint
56+
(>= 20230830))
5557
stdio
5658
sexplib
5759
num
5860
(saturn_lockfree
5961
(>= 0.5.0))
60-
(ppxlib (>= 0.36.0))
62+
(ppxlib
63+
(>= 0.36.0))
6164
ppx_compare
6265
ppx_hash
6366
ppx_here
@@ -84,7 +87,8 @@
8487
"A from-scratch Deep Learning framework with an optimizing compiler, shape inference, concise syntax")
8588
(description
8689
"OCaml Compiles Algorithms for Neural Networks Learning is a compiled Deep Learning framework that puts emphasis on low-level backends (like tinygrad), shape inference, concise notation (ab)using PPX.")
87-
(sites (share data))
90+
(sites
91+
(share data))
8892
(depends
8993
(ocaml
9094
(>= 5.3.0))
@@ -108,14 +112,17 @@
108112
(>= 0.12))
109113
(angstrom
110114
(>= 0.15))
115+
(pprint
116+
(>= 20230830))
111117
stdio
112118
sexplib
113119
num
114120
csv
115121
curl
116122
time_now
117123
camlzip
118-
(ppxlib (>= 0.36.0))
124+
(ppxlib
125+
(>= 0.36.0))
119126
ppx_compare
120127
ppx_fields_conv
121128
ppx_hash

neural_nets_lib.opam

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ depends: [
2222
"printbox-text" {>= "0.12"}
2323
"printbox-ext-plot" {>= "0.12"}
2424
"angstrom" {>= "0.15"}
25+
"pprint" {>= "20230830"}
2526
"stdio"
2627
"sexplib"
2728
"num"

0 commit comments

Comments
 (0)