From 275572f56f400a1ef29f86a2903b5ddd4b81dff5 Mon Sep 17 00:00:00 2001 From: Ben Gamari <ben@smart-cactus.org> Date: Fri, 15 Jun 2018 15:07:55 -0400 Subject: [PATCH] Add bounds on base in test-suite stanza GHC's build system runs `ghc-cabal check` on the cabal files for all of its core libraries. One of the checks that this performs is to verify that base has bounds. IMHO it's a bit silly that this is necessary even when base is otherwise constrained by the library stanza so I've left the bounds quite loose. --- process.cabal | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/process.cabal b/process.cabal index 535d53be..503c2dd3 100644 --- a/process.cabal +++ b/process.cabal @@ -85,7 +85,7 @@ test-suite test hs-source-dirs: test main-is: main.hs type: exitcode-stdio-1.0 - build-depends: base + build-depends: base >= 4 && < 5 , bytestring , directory , process -- GitLab