diff options
author | John MacFarlane <jgm@berkeley.edu> | 2018-09-30 21:07:48 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2018-09-30 21:07:48 -0700 |
commit | 59a770e6e95af108cedf92a1b6f00c25f0a76c38 (patch) | |
tree | 53c18f47cf048a5314733243e217b10f99a997ec | |
parent | aebe5fe99eecd132f29dedafe12fa8155f30045b (diff) | |
download | pandoc-59a770e6e95af108cedf92a1b6f00c25f0a76c38.tar.gz |
pandoc.cabal: make base lower bound 4.8.
We no longer support ghc 7.8, but this wasn't reflected in the
base versions.
-rw-r--r-- | pandoc.cabal | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/pandoc.cabal b/pandoc.cabal index 9ebd86f6e..1c227b5a1 100644 --- a/pandoc.cabal +++ b/pandoc.cabal @@ -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) |