diff options
author | John MacFarlane <jgm@berkeley.edu> | 2021-11-09 23:43:12 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2021-11-09 23:43:12 -0800 |
commit | 03f9a0c61eddff1d34537d767bd91cf395eae500 (patch) | |
tree | 6b3de2c5ce0e6d733acc1df1a795139492b1abe1 /prelude | |
parent | 6bec746074d29d971111a13f52ef515105362e8f (diff) | |
download | pandoc-03f9a0c61eddff1d34537d767bd91cf395eae500.tar.gz |
Require ghc >= 8.6, base >= 4.12.
This allows us to get rid of the old custom prelude and
some crufty cpp. But the primary reason for this is that
conduit has bumped its base lower bound to 4.12, making it
impossible for us to support lower base versions.
Diffstat (limited to 'prelude')
-rw-r--r-- | prelude/Prelude.hs | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/prelude/Prelude.hs b/prelude/Prelude.hs deleted file mode 100644 index 2d81ec1ff..000000000 --- a/prelude/Prelude.hs +++ /dev/null @@ -1,15 +0,0 @@ -{-# LANGUAGE NoImplicitPrelude #-} - --- The intent is that this Prelude provide the API of --- the base 4.11 Prelude in a way that is portable for --- all base versions. - -module Prelude -( - module Prelude.Compat -, Semigroup(..) -) -where - -import Prelude.Compat -import Data.Semigroup (Semigroup(..)) -- includes (<>) |