diff options
| author | Ben Gamari <bgamari.foss@gmail.com> | 2012-09-21 09:29:23 -0400 | 
|---|---|---|
| committer | Ben Gamari <bgamari.foss@gmail.com> | 2012-09-21 09:29:23 -0400 | 
| commit | 92c70294925dc8d4f1c59d2d47ae142655c14283 (patch) | |
| tree | 8a48181deef21373dfc4eaaf5604cd4dc7e002d6 | |
| parent | 1e7599cf6ae0ab1d31a6e51d469c80daeabc22ba (diff) | |
| download | pandoc-92c70294925dc8d4f1c59d2d47ae142655c14283.tar.gz | |
Bump containers upper bound to <0.6
Since containers 0.5 is in the wild as of ghc 7.6
| -rw-r--r-- | pandoc.cabal | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/pandoc.cabal b/pandoc.cabal index 0b234c52f..afd96bead 100644 --- a/pandoc.cabal +++ b/pandoc.cabal @@ -199,7 +199,7 @@ Library    -- Note: the following is duplicated in all stanzas.    -- It needs to be duplicated because of the library & executable flags.    -- BEGIN DUPLICATED SECTION -  Build-Depends: containers >= 0.1 && < 0.5, +  Build-Depends: containers >= 0.1 && < 0.6,                   parsec >= 3.1 && < 3.2,                   mtl >= 1.1 && < 2.2,                   network >= 2 && < 2.4, @@ -311,7 +311,7 @@ Executable pandoc    -- Note: the following is duplicated in all stanzas.    -- It needs to be duplicated because of the library & executable flags.    -- BEGIN DUPLICATED SECTION -  Build-Depends: containers >= 0.1 && < 0.5, +  Build-Depends: containers >= 0.1 && < 0.6,                   parsec >= 3.1 && < 3.2,                   mtl >= 1.1 && < 2.2,                   network >= 2 && < 2.4, @@ -396,7 +396,7 @@ Test-Suite test-pandoc                   QuickCheck >= 2.4 && < 2.6,                   HUnit >= 1.2 && < 1.3,                   template-haskell >= 2.4 && < 2.8, -                 containers >= 0.1 && < 0.5, +                 containers >= 0.1 && < 0.6,                   ansi-terminal == 0.5.*    Other-Modules: Tests.Old                   Tests.Helpers | 
