From 6627c599fd317c91a02b7ec547058d0ca62f4a41 Mon Sep 17 00:00:00 2001 From: IC Rainbow Date: Wed, 21 Aug 2024 10:56:25 +0300 Subject: [PATCH] Allow base from GHC-9.10 Removed redundant sub-component restrictions on base. --- shower.cabal | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/shower.cabal b/shower.cabal index a66e023..29397e2 100644 --- a/shower.cabal +++ b/shower.cabal @@ -28,7 +28,7 @@ library Shower.Parser Shower.Class build-depends: - base >=4.10 && <4.18, + base >=4.10 && <4.21, megaparsec, pretty hs-source-dirs: lib @@ -38,7 +38,7 @@ library executable shower main-is: Main.hs build-depends: - base >=4.10 && <4.18, + base, shower hs-source-dirs: exe default-language: Haskell2010 @@ -50,7 +50,7 @@ test-suite shower-tests Property type: exitcode-stdio-1.0 build-depends: - base >=4.10 && <4.18, + base, aeson, tasty, tasty-golden,