diff options
author | Nicolas Pouillard <nicolas.pouillard@gmail.com> | 2012-10-18 15:51:04 +0200 |
---|---|---|
committer | Nicolas Pouillard <nicolas.pouillard@gmail.com> | 2012-10-18 15:51:04 +0200 |
commit | 7cf33850a6058d93ca443abf7c07df22c62c5186 (patch) | |
tree | 324d046ee44b16330f01f292760840b9bee43c07 /git-annex.cabal | |
parent | c6c7cbdfb718a20a3a12a2807ad8917296d247f6 (diff) |
Relax the dependency on the base package, to accomodate with GHC 7.6
Diffstat (limited to 'git-annex.cabal')
-rw-r--r-- | git-annex.cabal | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/git-annex.cabal b/git-annex.cabal index d27843d01..5fb3944af 100644 --- a/git-annex.cabal +++ b/git-annex.cabal @@ -49,7 +49,7 @@ Executable git-annex unix, containers, utf8-string, network (>= 2.4.0.1), mtl, bytestring, old-locale, time, pcre-light, extensible-exceptions, dataenc, SHA, process, json, HTTP, - base == 4.5.*, monad-control, transformers-base, lifted-base, + base (>= 4.5 && < 4.7), monad-control, transformers-base, lifted-base, IfElse, text, QuickCheck >= 2.1, bloomfilter, edit-distance, process -- Need to list these because they're generated from .hsc files. Other-Modules: Utility.Touch Utility.Mounts @@ -96,7 +96,7 @@ Test-Suite test Build-Depends: testpack, HUnit, MissingH, hslogger, directory, filepath, unix, containers, utf8-string, network, mtl, bytestring, old-locale, time, pcre-light, extensible-exceptions, dataenc, SHA, process, json, HTTP, - base == 4.5.*, monad-control, transformers-base, lifted-base, + base (>= 4.5 && < 4.7), monad-control, transformers-base, lifted-base, IfElse, text, QuickCheck >= 2.1, bloomfilter, edit-distance, process Other-Modules: Utility.Touch Include-Dirs: Utility |