From 8f94d4d38bdb03a01d83d0e4afd82493046a9445 Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Wed, 24 Aug 2022 11:09:13 -0400 Subject: [PATCH] hath.cabal: require ghc-9.x. Older GHC might still work, but I'm not spending half a day testing it. --- hath.cabal | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/hath.cabal b/hath.cabal index 8b1b4fe..1c4bac3 100644 --- a/hath.cabal +++ b/hath.cabal @@ -106,7 +106,7 @@ executable hath Paths_hath build-depends: - base >= 4.9 && < 5, + base >= 4.15, cmdargs >= 0.10, split >= 0.2, tasty >= 0.8, @@ -128,7 +128,7 @@ test-suite testsuite Octet build-depends: - base == 4.*, + base >= 4.15, cmdargs >= 0.10, split >= 0.2, tasty >= 0.8, @@ -144,7 +144,7 @@ test-suite shelltests main-is: ShellTests.hs build-depends: - base == 4.*, + base >= 4.15, process >= 1.1 -- 2.43.2