From 9f833770b08fbfb84c201acd1275049f900d5cd4 Mon Sep 17 00:00:00 2001 From: "Joseph C. Sible" Date: Thu, 19 Mar 2020 21:31:10 -0400 Subject: [PATCH] Mark that base >= 4.8.0.0 is required We've actually already required base >= 4.8.0.0 since commit a8376a0 (in which we first used `<$>` without an import, which wasn't in the Prelude prior to this version). Since then, we've also made use of other more substantial features that de-facto require base >= 4.8.0.0 since they require GHC 7.10, such as `DeriveAnyClass`. --- ShellCheck.cabal | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/ShellCheck.cabal b/ShellCheck.cabal index 0389be6..a848d9c 100644 --- a/ShellCheck.cabal +++ b/ShellCheck.cabal @@ -45,9 +45,7 @@ library build-depends: aeson, array, - -- GHC 7.6.3 (base 4.6.0.1) is buggy (#1131, #1119) in optimized mode. - -- Just disable that version entirely to fail fast. - base > 4.6.0.1 && < 5, + base >= 4.8.0.0 && < 5, bytestring, containers >= 0.5, deepseq >= 1.4.0.0,