From e3c4b3e2caf50196715ebabcba03556967967bae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Laurent=20P=2E=20Ren=C3=A9=20de=20Cotret?= Date: Tue, 17 Jun 2025 13:32:56 -0400 Subject: [PATCH] Allow QuickCheck 2.16 This was tested manually using: ``` cabal build --constraint="QuickCheck==2.16.0.0" --allow-newer=QuickCheck ``` Note that `allow-newer` is required since `tasty-quickckeck` doesn't yet support QuickCheck 2.16 --- hakyll.cabal | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hakyll.cabal b/hakyll.cabal index 9b46ff17..3693a494 100644 --- a/hakyll.cabal +++ b/hakyll.cabal @@ -285,7 +285,7 @@ Test-suite hakyll-tests Build-Depends: hakyll, - QuickCheck >= 2.8 && < 2.16, + QuickCheck >= 2.8 && < 2.17, tasty >= 0.11 && < 1.6, tasty-golden >= 2.3 && < 2.4, tasty-hunit >= 0.9 && < 0.11,