Skip to content
Snippets Groups Projects
Unverified Commit 275572f5 authored by Ben Gamari's avatar Ben Gamari :turtle: Committed by GitHub
Browse files

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.
parent 47bc8ae4
No related tags found
No related merge requests found
...@@ -85,7 +85,7 @@ test-suite test ...@@ -85,7 +85,7 @@ test-suite test
hs-source-dirs: test hs-source-dirs: test
main-is: main.hs main-is: main.hs
type: exitcode-stdio-1.0 type: exitcode-stdio-1.0
build-depends: base build-depends: base >= 4 && < 5
, bytestring , bytestring
, directory , directory
, process , process
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment