Merge pull request #25 from alexpeits/ghc-8.8

Support ghc >= 8.8
This commit is contained in:
Tom Harding 2021-01-24 17:34:35 +00:00 committed by GitHub
commit 768cbf5358
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -24,8 +24,8 @@ library
Data.Generic.HKD.Types Data.Generic.HKD.Types
-- other-modules: -- other-modules:
-- other-extensions: -- other-extensions:
build-depends: base ^>= 4.13 build-depends: base >= 4.12 && < 5
, barbies >= 1.1.0 && < 3 , barbies ^>= 2.0
, generic-lens ^>= 2.0 , generic-lens ^>= 2.0
, generic-lens-core ^>= 2.0 , generic-lens-core ^>= 2.0
, QuickCheck >= 2.12.6 && < 2.14 , QuickCheck >= 2.12.6 && < 2.14
@ -35,12 +35,12 @@ library
test-suite test test-suite test
build-depends: base build-depends: base
, barbies >= 1.1.0 && < 3 , barbies
, doctest ^>= 0.16.0 , doctest ^>= 0.16.0
, higgledy , higgledy
, hspec >= 2.6.1 && < 2.8 , hspec >= 2.6.1 && < 2.8
, lens ^>= 4.19 , lens >= 4.17 && < 5
, QuickCheck >= 2.12.6 && < 2.14 , QuickCheck
main-is: Main.hs main-is: Main.hs
type: exitcode-stdio-1.0 type: exitcode-stdio-1.0
hs-source-dirs: test hs-source-dirs: test
@ -48,8 +48,8 @@ test-suite test
test-suite readme test-suite readme
build-depends: base build-depends: base
, barbies >= 1.1.3.0 && < 3 , barbies
, lens ^>= 4.19 , lens >= 4.17 && < 5
, higgledy , higgledy
, named ^>= 0.3.0.0 , named ^>= 0.3.0.0
main-is: README.lhs main-is: README.lhs