Skip to content

Commit

Permalink
QuickCheck >= 2.9 required for base >= 4.9
Browse files Browse the repository at this point in the history
Closes #28
  • Loading branch information
spl committed Jul 29, 2016
1 parent 42e99cd commit 188d1a4
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions dlist.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -44,5 +44,10 @@ test-suite test
build-depends: dlist,
base,
Cabal,
QuickCheck >= 2.7 && < 2.10
ghc-options: -Wall
QuickCheck < 2.10
if impl(ghc >= 8)
-- QuickCheck-2.9 introduced support for Semigroup and NonEmpty in base.
-- It is required for testing base >= 4.9 (GHC >= 8).
build-depends: QuickCheck >= 2.9
else
build-depends: QuickCheck >= 2.7

0 comments on commit 188d1a4

Please sign in to comment.