From 538f73200980e801d55dd5967a7cd5e61476429d Mon Sep 17 00:00:00 2001 From: Preetham Gujjula Date: Tue, 25 Jun 2024 00:20:54 -0700 Subject: [PATCH] Allow tasty-quickcheck-0.11 Cherry-pick from [1]. Resolves out-of-bounds issue described in [2]. [1]: 2f0270479191405b5dcdcce90222aa2a4067a50a [2]: https://github.com/commercialhaskell/stackage/issues/7460 --- apply-merge.cabal | 2 +- package.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apply-merge.cabal b/apply-merge.cabal index 25df196..20b7870 100644 --- a/apply-merge.cabal +++ b/apply-merge.cabal @@ -84,7 +84,7 @@ test-suite apply-merge-tests , tasty >=1.4 && <1.5 || >=1.5 && <1.6 , tasty-expected-failure ==0.12.* , tasty-hunit ==0.10.* - , tasty-quickcheck ==0.10.* + , tasty-quickcheck >=0.10 && <0.11 || >=0.11 && <0.12 , transformers >=0.5 && <0.6 || >=0.6 && <0.7 , vector >=0.12 && <0.13 || >=0.13 && <0.14 default-language: GHC2021 diff --git a/package.yaml b/package.yaml index d4261b6..5563389 100644 --- a/package.yaml +++ b/package.yaml @@ -74,7 +74,7 @@ tests: - tasty ^>= {1.4, 1.5} - tasty-expected-failure ^>= {0.12} - tasty-hunit ^>= {0.10} - - tasty-quickcheck ^>= {0.10} + - tasty-quickcheck ^>= {0.10, 0.11} - transformers ^>= {0.5, 0.6} - vector ^>= {0.12, 0.13}