Skip to content

Commit

Permalink
Merge pull request #74 from andreasabel/base-lower-bound
Browse files Browse the repository at this point in the history
Fix #73: revise bounds on base to >= 4.4
  • Loading branch information
CetinSert authored Feb 8, 2022
2 parents 85ecc2f + 4680c69 commit bb98bcc
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 bb98bcc

Please sign in to comment.