Skip to content

Commit 63954d9

Browse files
ulysses4evermergify[bot]
authored andcommitted
3.14 pre-flight checks: bump dependencies (haskell#10244)
* 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>
1 parent 5f4b56e commit 63954d9

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

Cabal-described/Cabal-described.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ library
1919
, QuickCheck
2020
, rere >=0.1 && <0.3
2121
, tasty <1.6
22-
, tasty-quickcheck <0.11
22+
, tasty-quickcheck <0.12
2323

2424
exposed-modules:
2525
Distribution.Described

Cabal-tests/Cabal-tests.cabal

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ test-suite unit-tests
7070
, QuickCheck >=2.14 && <2.15
7171
, tasty >=1.2.3 && <1.6
7272
, tasty-hunit
73-
, tasty-quickcheck <0.11
73+
, tasty-quickcheck <0.12
7474
, temporary
7575
, text
7676

@@ -175,7 +175,7 @@ test-suite rpmvercmp
175175
QuickCheck
176176
, tasty >=1.2.3 && <1.6
177177
, tasty-hunit
178-
, tasty-quickcheck <0.11
178+
, tasty-quickcheck <0.12
179179

180180
c-sources: tests/cbits/rpmvercmp.c
181181
cc-options: -Wall

cabal-install-solver/cabal-install-solver.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,5 +135,5 @@ Test-Suite unit-tests
135135
, Cabal-syntax
136136
, cabal-install-solver
137137
, tasty >= 1.2.3 && <1.6
138-
, tasty-quickcheck <0.11
138+
, tasty-quickcheck <0.12
139139
, tasty-hunit >= 0.10

cabal-install/cabal-install.cabal

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ library
231231
edit-distance >= 0.2.2 && < 0.3,
232232
exceptions >= 0.10.4 && < 0.11,
233233
filepath >= 1.4.0.0 && < 1.6,
234-
hashable >= 1.0 && < 1.5,
234+
hashable >= 1.0 && < 1.6,
235235
HTTP >= 4000.1.5 && < 4000.5,
236236
mtl >= 2.0 && < 2.4,
237237
network-uri >= 2.6.0.2 && < 2.7,
@@ -350,7 +350,7 @@ test-suite unit-tests
350350
zlib,
351351
tasty >= 1.2.3 && <1.6,
352352
tasty-golden >=2.3.1.1 && <2.4,
353-
tasty-quickcheck <0.11,
353+
tasty-quickcheck ^>=0.11,
354354
tasty-expected-failure,
355355
tasty-hunit >= 0.10,
356356
tree-diff,
@@ -439,6 +439,6 @@ test-suite long-tests
439439
tasty >= 1.2.3 && <1.6,
440440
tasty-expected-failure,
441441
tasty-hunit >= 0.10,
442-
tasty-quickcheck <0.11,
442+
tasty-quickcheck <0.12,
443443
QuickCheck >= 2.14 && <2.16,
444444
pretty-show >= 1.6.15

cabal-install/tests/UnitTests/Distribution/Solver/Modular/QuickCheck/Utils.hs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ instance IsTest QCWithSeed where
3131

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

0 commit comments

Comments
 (0)