From 48d348013a31efb2c7858731552a0f3c68036452 Mon Sep 17 00:00:00 2001 From: Sebastian Graf Date: Fri, 13 Sep 2024 15:32:51 +0200 Subject: [PATCH] Bump lower bound on base to 4.9 --- happy.cabal | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/happy.cabal b/happy.cabal index 0363125e..b4cb264b 100644 --- a/happy.cabal +++ b/happy.cabal @@ -140,7 +140,7 @@ executable happy hs-source-dirs: src main-is: Main.lhs - build-depends: base < 5, + build-depends: base >= 4.9 && < 5, array, containers >= 0.4.2, mtl >= 2.2.1, @@ -163,5 +163,5 @@ test-suite tests build-tools: happy ghc-options: -threaded - build-depends: base < 5, process < 1.7 + build-depends: base >= 4.9 && < 5, process < 1.7 default-language: Haskell98