Skip to content

Commit 86b3422

Browse files
committed
Merge pull request haskell-distributed#22 from markwright/master
distributed-process builds with ghc 7.7.20120806
2 parents 49a36ce + bcab5ae commit 86b3422

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

distributed-process-simplelocalnet/distributed-process-simplelocalnet.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ Test-Suite TestSimpleLocalnet
5656
transformers >= 0.2 && < 0.4,
5757
network-transport >= 0.2 && < 0.3,
5858
network-transport-tcp >= 0.2 && < 0.3,
59-
distributed-process >= 0.2 && < 0.3
59+
distributed-process >= 0.2 && < 0.4
6060
Extensions: RankNTypes,
6161
DeriveDataTypeable
6262
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N -fno-warn-unused-do-bind

distributed-process/distributed-process.cabal

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ Library
4141
containers >= 0.4 && < 0.6,
4242
old-locale >= 1.0 && < 1.1,
4343
time >= 1.2 && < 1.5,
44-
template-haskell >= 2.6 && < 2.8,
44+
template-haskell >= 2.6 && < 2.9,
4545
random >= 1.0 && < 1.1,
46-
ghc-prim >= 0.2 && < 0.3,
46+
ghc-prim >= 0.2 && < 0.4,
4747
distributed-static >= 0.1 && < 0.2,
4848
rank1dynamic >= 0.1 && < 0.2,
4949
syb >= 0.3 && < 0.4
@@ -84,9 +84,9 @@ Test-Suite TestCH
8484
containers >= 0.4 && < 0.6,
8585
old-locale >= 1.0 && < 1.1,
8686
time >= 1.2 && < 1.5,
87-
template-haskell >= 2.6 && < 2.8,
87+
template-haskell >= 2.6 && < 2.9,
8888
random >= 1.0 && < 1.1,
89-
ghc-prim >= 0.2 && < 0.3,
89+
ghc-prim >= 0.2 && < 0.4,
9090
ansi-terminal >= 0.5 && < 0.6,
9191
distributed-static >= 0.1 && < 0.2,
9292
rank1dynamic >= 0.1 && < 0.2
@@ -117,9 +117,9 @@ Test-Suite TestClosure
117117
containers >= 0.4 && < 0.6,
118118
old-locale >= 1.0 && < 1.1,
119119
time >= 1.2 && < 1.5,
120-
template-haskell >= 2.6 && < 2.8,
120+
template-haskell >= 2.6 && < 2.9,
121121
random >= 1.0 && < 1.1,
122-
ghc-prim >= 0.2 && < 0.3,
122+
ghc-prim >= 0.2 && < 0.4,
123123
ansi-terminal >= 0.5 && < 0.6,
124124
distributed-static >= 0.1 && < 0.2,
125125
rank1dynamic >= 0.1 && < 0.2,

distributed-static/distributed-static.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Library
2828
Exposed-Modules: Control.Distributed.Static
2929
Build-Depends: base >= 4 && < 5,
3030
rank1dynamic >= 0.1 && < 0.2,
31-
containers >= 0.4 && < 0.5,
31+
containers >= 0.4 && < 0.6,
3232
bytestring >= 0.9 && < 0.11,
3333
binary >= 0.5 && < 0.6
3434
HS-Source-Dirs: src

rank1dynamic/rank1dynamic.cabal

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ Cabal-Version: >=1.8
1717
Library
1818
Exposed-Modules: Data.Rank1Dynamic,
1919
Data.Rank1Typeable
20-
Build-Depends: base ==4.5.*,
21-
ghc-prim >= 0.2 && < 0.3,
20+
Build-Depends: base >= 4.5 && < 4.7,
21+
ghc-prim >= 0.2 && < 0.4,
2222
binary >= 0.5 && < 0.6
2323
HS-Source-Dirs: src
2424
GHC-Options: -Wall

0 commit comments

Comments
 (0)