From: Michael Orlitzky Date: Wed, 24 Aug 2022 01:02:08 +0000 (-0400) Subject: mailbox-count.cabal: simplify a bit by assuming ghc-8.x or newer. X-Git-Tag: 0.0.6~7 X-Git-Url: https://gitweb.michael.orlitzky.com/?p=mailbox-count.git;a=commitdiff_plain;h=15c89514a95d944ca0c660754386031512205b18 mailbox-count.cabal: simplify a bit by assuming ghc-8.x or newer. --- diff --git a/mailbox-count.cabal b/mailbox-count.cabal index 47af6ad..f43282b 100644 --- a/mailbox-count.cabal +++ b/mailbox-count.cabal @@ -153,7 +153,7 @@ description: executable mailbox-count build-depends: - base >= 4.8 && < 5, + base >= 4.9 && < 5, cmdargs >= 0.10, configurator >= 0.2, containers >= 0.5, @@ -165,10 +165,6 @@ executable mailbox-count MissingH >= 1.2, tasty >= 0.8, tasty-hunit >= 0.8 - -- Data.Semigroup was added to GHC.Base in ghc-8.0 - if impl(ghc < 8.0) - -- The minor version 0.18.2 deleted the entire API? - build-depends: semigroups < 0.18.2 main-is: Main.hs @@ -204,7 +200,7 @@ test-suite testsuite Report build-depends: - base >= 4.8 && < 5, + base >= 4.9 && < 5, cmdargs >= 0.10, configurator >= 0.2, containers >= 0.5, @@ -216,10 +212,6 @@ test-suite testsuite MissingH >= 1.2, tasty >= 0.8, tasty-hunit >= 0.8 - -- Data.Semigroup was added to GHC.Base in ghc-8.0 - if impl(ghc < 8.0) - -- The minor version 0.18.2 deleted the entire API? - build-depends: semigroups < 0.18.2 test-suite doctests @@ -227,7 +219,7 @@ test-suite doctests hs-source-dirs: test main-is: Doctests.hs build-depends: - base >= 4.8 && < 5, + base >= 4.9 && < 5, -- Additional test dependencies. doctest >= 0.9, filemanip >= 0.3.6