Skip to content

Commit

Permalink
3.14 pre-flight checks: bump dependencies (haskell#10244)
Browse files Browse the repository at this point in the history
* allow hashable-1.5

* allow tasty-quickcheck 0.11, and in case of cabal-install:test move to ^>=0.11

---------

Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
  • Loading branch information
2 people authored and mpickering committed Aug 12, 2024
1 parent f617dfd commit 461f1cf
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion Cabal-described/Cabal-described.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ library
, QuickCheck
, rere >=0.1 && <0.3
, tasty <1.6
, tasty-quickcheck <0.11
, tasty-quickcheck <0.12

exposed-modules:
Distribution.Described
Expand Down
4 changes: 2 additions & 2 deletions Cabal-tests/Cabal-tests.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ test-suite unit-tests
, QuickCheck >=2.14 && <2.15
, tasty >=1.2.3 && <1.6
, tasty-hunit
, tasty-quickcheck <0.11
, tasty-quickcheck <0.12
, temporary
, text

Expand Down Expand Up @@ -175,7 +175,7 @@ test-suite rpmvercmp
QuickCheck
, tasty >=1.2.3 && <1.6
, tasty-hunit
, tasty-quickcheck <0.11
, tasty-quickcheck <0.12

c-sources: tests/cbits/rpmvercmp.c
cc-options: -Wall
Expand Down
2 changes: 1 addition & 1 deletion cabal-install-solver/cabal-install-solver.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -135,5 +135,5 @@ Test-Suite unit-tests
, Cabal-syntax
, cabal-install-solver
, tasty >= 1.2.3 && <1.6
, tasty-quickcheck <0.11
, tasty-quickcheck <0.12
, tasty-hunit >= 0.10
6 changes: 3 additions & 3 deletions cabal-install/cabal-install.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ library
edit-distance >= 0.2.2 && < 0.3,
exceptions >= 0.10.4 && < 0.11,
filepath >= 1.4.0.0 && < 1.6,
hashable >= 1.0 && < 1.5,
hashable >= 1.0 && < 1.6,
HTTP >= 4000.1.5 && < 4000.5,
mtl >= 2.0 && < 2.4,
network-uri >= 2.6.0.2 && < 2.7,
Expand Down Expand Up @@ -350,7 +350,7 @@ test-suite unit-tests
zlib,
tasty >= 1.2.3 && <1.6,
tasty-golden >=2.3.1.1 && <2.4,
tasty-quickcheck <0.11,
tasty-quickcheck ^>=0.11,
tasty-expected-failure,
tasty-hunit >= 0.10,
tree-diff,
Expand Down Expand Up @@ -439,6 +439,6 @@ test-suite long-tests
tasty >= 1.2.3 && <1.6,
tasty-expected-failure,
tasty-hunit >= 0.10,
tasty-quickcheck <0.11,
tasty-quickcheck <0.12,
QuickCheck >= 2.14 && <2.16,
pretty-show >= 1.6.15
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ instance IsTest QCWithSeed where

run options (QCWithSeed test) progress = do
replay <- case lookupOption options of
QuickCheckReplay (Just override) -> return override
QuickCheckReplay Nothing -> getStdRandom random
QuickCheckReplayLegacy override -> return override
_ -> getStdRandom random
notice normal $ "Using --quickcheck-replay=" ++ show replay
run (setOption (QuickCheckReplay (Just replay)) options) test progress
run (setOption (QuickCheckReplayLegacy replay) options) test progress

0 comments on commit 461f1cf

Please sign in to comment.