Skip to content

Commit

Permalink
Fix #73: revise bounds on base to >= 4.4
Browse files Browse the repository at this point in the history
Also:
- delete repeated (redundant) bounds on base in test-suite and
  benchmark
- fix upper bound to < 5 (rather than <= 5, which isn't what you want)
  • Loading branch information
andreasabel committed Feb 7, 2022
1 parent 85ecc2f commit 4680c69
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions clock.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,8 @@ flag llvm
library
default-language: Haskell2010
if impl (ghc < 7.6)
build-depends: base >= 4.4 && <= 5, ghc-prim
build-depends: base >= 2 && <= 5
build-depends: ghc-prim
build-depends: base >= 4.4 && < 5
exposed-modules: System.Clock
default-extensions: DeriveGeneric
DeriveDataTypeable
Expand All @@ -95,7 +95,7 @@ test-suite test
main-is:
test.hs
build-depends:
base >= 4 && < 5
base
, tasty >= 0.10
, tasty-quickcheck
, clock
Expand All @@ -109,6 +109,6 @@ benchmark benchmarks
main-is:
benchmarks.hs
build-depends:
base >= 4 && < 5
base
, criterion
, clock

0 comments on commit 4680c69

Please sign in to comment.