Skip to content

Commit 463c570

Browse files
committed
Fix ppx_minidebug version, update cudajit version
Signed-off-by: Lukasz Stafiniak <lukstafi@gmail.com>
1 parent 2e38b84 commit 463c570

File tree

3 files changed

+6
-8
lines changed

3 files changed

+6
-8
lines changed

arrayjit.opam

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,11 @@ depends: [
3636
"odoc" {with-doc}
3737
]
3838
depopts: [
39-
"cudajit" {>= "0.6.1"}
39+
"cudajit" {>= "0.6.2"}
4040
"gccjit" {>= "0.3.2"}
4141
]
4242
conflicts: [
43-
"cudajit" {< "0.6.1"}
43+
"cudajit" {< "0.6.2"}
4444
"gccjit" {< "0.3.2"}
4545
]
4646
build: [

dune-project

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -62,12 +62,12 @@
6262
(>= 2.2.0)))
6363
(depopts
6464
(cudajit
65-
(>= 0.6.1))
65+
(>= 0.6.2))
6666
(gccjit
6767
(>= 0.3.2)))
6868
(conflicts
6969
(cudajit
70-
(< 0.6.1))
70+
(< 0.6.2))
7171
(gccjit
7272
(< 0.3.2)))
7373
(tags
@@ -115,9 +115,7 @@
115115
ppx_expect
116116
; ppx_minidebug 2.2.0 will be a breaking change.
117117
(ppx_minidebug
118-
(and
119-
(>= 2.1.0)
120-
(< 2.2.0)))
118+
(>= 2.2.0))
121119
(odoc :with-doc)
122120
(md2mld :with-doc))
123121
(tags

neural_nets_lib.opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ depends: [
3434
"ppx_string"
3535
"ppx_variants_conv"
3636
"ppx_expect"
37-
"ppx_minidebug" {>= "2.1.0" & < "2.2.0"}
37+
"ppx_minidebug" {>= "2.2.0"}
3838
"odoc" {with-doc}
3939
"md2mld" {with-doc}
4040
]

0 commit comments

Comments
 (0)