Skip to content

Commit 35c2e36

Browse files
committed
[ ghc-9.0 ] relax upper bounds on base and tasty
Builds with GHC 9.0.
1 parent 94c31ce commit 35c2e36

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

zlib.cabal

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,21 +65,25 @@ library
6565
Codec.Compression.Zlib.Internal
6666
other-modules: Codec.Compression.Zlib.Stream,
6767
Codec.Compression.Zlib.ByteStringCompat
68+
6869
if impl(ghc < 7)
6970
default-language: Haskell98
7071
default-extensions: PatternGuards
7172
else
7273
default-language: Haskell2010
74+
7375
other-extensions: CPP, ForeignFunctionInterface, RankNTypes, BangPatterns,
7476
DeriveDataTypeable
7577
if impl(ghc >= 7.2)
7678
other-extensions: DeriveGeneric
7779
if impl(ghc >= 7.6)
7880
other-extensions: CApiFFI
79-
build-depends: base >= 4 && < 4.15,
81+
82+
build-depends: base >= 4 && < 4.16,
8083
bytestring >= 0.9 && < 0.12
8184
if impl(ghc >= 7.0 && < 8.0.3)
8285
build-depends: ghc-prim
86+
8387
includes: zlib.h
8488
ghc-options: -Wall -fwarn-tabs
8589
if flag(non-blocking-ffi)
@@ -112,7 +116,7 @@ test-suite tests
112116
default-language: Haskell2010
113117
build-depends: base, bytestring, zlib,
114118
QuickCheck == 2.*,
115-
tasty >= 0.8 && < 1.3,
119+
tasty >= 0.8 && < 1.5,
116120
tasty-quickcheck >= 0.8 && < 0.11,
117121
tasty-hunit >= 0.8 && < 0.11
118122
ghc-options: -Wall

0 commit comments

Comments
 (0)