Skip to content

Commit 2607de8

Browse files
committed
addressing PVP dep issues prior to release
1 parent 57e2bcc commit 2607de8

File tree

1 file changed

+13
-14
lines changed

1 file changed

+13
-14
lines changed

matlab.cabal

Lines changed: 13 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,12 @@ Flag Runtime
3838

3939
library
4040
default-language: Haskell2010
41-
Build-depends: base >= 4 && < 5,
42-
array,
43-
filepath,
44-
path,
45-
profunctors >= 5.3,
46-
Cabal < 3.0
41+
Build-depends: base >= 4.0 && < 4.16,
42+
array >= 0.5 && < 0.6,
43+
filepath >= 1.4 && < 1.5,
44+
path >= 0.6 && < 0.7,
45+
profunctors >= 5.3 && < 5.4,
46+
Cabal >= 2.1 && < 2.5
4747
Exposed-modules: Foreign.Matlab,
4848
Foreign.Matlab.Types,
4949
Foreign.Matlab.Array,
@@ -66,12 +66,12 @@ library
6666

6767
if flag(runtime)
6868
build-tools: mcc
69-
Build-depends: unix < 2.8
69+
Build-depends: unix >= 2.7 && < 2.8
7070
Exposed-modules: Foreign.Matlab.Runtime, Foreign.Matlab.Runtime.Generic
7171

7272
if flag(engine)
7373
Exposed-modules: Foreign.Matlab.Engine
74-
Build-depends: containers
74+
Build-depends: containers >= 0.6 && < 0.7
7575
extra-libraries: eng
7676

7777
Source-repository head
@@ -109,14 +109,13 @@ executable matlab-engine-test
109109
test
110110
ghc-options: -threaded -rtsopts -with-rtsopts=-N -fno-ignore-asserts
111111
build-depends:
112-
base >= 4 && <5
113-
, exceptions
112+
base
113+
, exceptions >= 0.10 && < 0.11
114114
, filepath
115115
, matlab
116116
, path
117-
, template-haskell
118-
, text
119-
-- , turtle >= 1.5
117+
, template-haskell >= 2.14 && < 2.15
118+
, text >= 1.2 && < 1.3
120119
default-language: Haskell2010
121120
extra-libraries: eng, mx, mat
122121

@@ -127,6 +126,6 @@ executable haskell-hello
127126
hello
128127
ghc-options: -threaded -rtsopts -with-rtsopts=-N
129128
build-depends:
130-
base >= 4 && <5
129+
base
131130
default-language: Haskell2010
132131
extra-libraries:

0 commit comments

Comments
 (0)