diff options
author | Herbert Valerio Riedel <hvr@gnu.org> | 2019-04-17 23:19:21 +0200 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2019-04-17 14:19:21 -0700 |
commit | 75b2db9a84846151215a573af696adb3f4f72d24 (patch) | |
tree | 2c8d552a03911a332982f11bf69ae3eaa561d5da | |
parent | 1e6c6b449f497fc583336a9fccd1dd24239a06c1 (diff) | |
download | pandoc-75b2db9a84846151215a573af696adb3f4f72d24.tar.gz |
Don't advertise base-4.8 support anymore (#5455)
Problem is that blaze-html provides the Semigroup instance for Html
conditionally only for base >= 4.9
-rw-r--r-- | pandoc.cabal | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pandoc.cabal b/pandoc.cabal index 4319c5275..ae52634cb 100644 --- a/pandoc.cabal +++ b/pandoc.cabal @@ -360,7 +360,7 @@ flag trypandoc Default: False library - build-depends: base >= 4.8 && < 5, + build-depends: base >= 4.9 && < 5, syb >= 0.1 && < 0.8, containers >= 0.4.2.1 && < 0.7, unordered-containers >= 0.2 && < 0.3, |