From 6e32112be4a9fe898ec615b59dabcda8c36005bd Mon Sep 17 00:00:00 2001 From: Eugen Wissner Date: Wed, 7 Aug 2024 19:25:42 +0200 Subject: [PATCH] Require base >=4.15 (GHC 9) It's already required by some of the dependencies, so it shouldn't be a problem. Anyway NonEmpty usage is requiring base >=4.9 at least. --- graphql.cabal | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/graphql.cabal b/graphql.cabal index cf71bf7..defcdce 100644 --- a/graphql.cabal +++ b/graphql.cabal @@ -1,4 +1,4 @@ -cabal-version: 2.4 +cabal-version: 3.0 name: graphql version: 1.3.0.0 @@ -57,7 +57,7 @@ library ghc-options: -Wall build-depends: - base >= 4.7 && < 5, + base >= 4.15 && < 5, conduit ^>= 1.3.4, containers >= 0.6 && < 0.8, exceptions ^>= 0.10.4,