From 5be9b4cd358ea9c37f7f32d9c07da97dc20212ca Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Sun, 28 Aug 2022 08:08:56 -0400 Subject: [PATCH] hath.cabal: add back upper bounds on the "base" package. Piece of shit Hackage won't accept the tarball without this either. --- hath.cabal | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/hath.cabal b/hath.cabal index c88197b..53201ab 100644 --- a/hath.cabal +++ b/hath.cabal @@ -111,7 +111,7 @@ executable hath Paths_hath build-depends: - base >= 4.15, + base >= 4.15 && < 5.0, cmdargs >= 0.10, split >= 0.2, tasty >= 0.8, @@ -134,7 +134,7 @@ test-suite testsuite Octet build-depends: - base >= 4.15, + base >= 4.15 && < 5.0, split >= 0.2, tasty >= 0.8, tasty-hunit >= 0.8, @@ -150,7 +150,7 @@ test-suite shelltests main-is: ShellTests.hs build-depends: - base >= 4.15, + base >= 4.15 && < 5.0, process >= 1.1 -- 2.43.2