pandoc.cabal: make base lower bound 4.8.

We no longer support ghc 7.8, but this wasn't reflected in the
base versions.
This commit is contained in:
John MacFarlane 2018-09-30 21:07:48 -07:00
parent aebe5fe99e
commit 59a770e6e9

View file

@ -340,7 +340,7 @@ custom-setup
setup-depends: base, Cabal >= 2.0
library
build-depends: base >= 4.7 && < 5,
build-depends: base >= 4.8 && < 5,
syb >= 0.1 && < 0.8,
containers >= 0.4.2.1 && < 0.6,
unordered-containers >= 0.2 && < 0.3,
@ -550,7 +550,7 @@ library
buildable: True
executable pandoc
build-depends: pandoc, base >= 4.7 && < 5
build-depends: pandoc, base >= 4.8 && < 5
if impl(ghc < 8.0)
build-depends: semigroups == 0.18.*
if impl(ghc < 8.4)
@ -590,7 +590,7 @@ benchmark weigh-pandoc
main-is: weigh-pandoc.hs
hs-source-dirs: benchmark
build-depends: pandoc,
base >= 4.2 && < 5,
base >= 4.8 && < 5,
text,
weigh >= 0.0 && < 0.1,
mtl >= 2.2 && < 2.3
@ -608,7 +608,7 @@ test-suite test-pandoc
type: exitcode-stdio-1.0
main-is: test-pandoc.hs
hs-source-dirs: test
build-depends: base >= 4.2 && < 5,
build-depends: base >= 4.8 && < 5,
pandoc,
pandoc-types >= 1.17.5 && < 1.18,
bytestring >= 0.9 && < 0.11,
@ -695,7 +695,7 @@ benchmark benchmark-pandoc
hs-source-dirs: benchmark
build-depends: pandoc,
time, bytestring, containers,
base >= 4.2 && < 5,
base >= 4.8 && < 5,
text >= 0.11 && < 1.3,
criterion >= 1.0 && < 1.6
if impl(ghc < 8.0)