Skip to content

Commit ae7a6c5

Browse files
LaurentRDCandreasabel
authored andcommitted
Support for random-1.3
1 parent 0d883bd commit ae7a6c5

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

core/src/Test/Framework/Seed.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module Test.Framework.Seed where
22

33
import Test.Framework.Utilities
44

5-
import System.Random
5+
import System.Random (StdGen, mkStdGen, randomIO)
66

77
import Data.Char
88

core/test-framework.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ Library
6767
Build-Depends: base >= 4.3 && < 5
6868
, ansi-terminal >= 0.4.0 && < 1.2
6969
, ansi-wl-pprint >= 0.5.1 && < 1.1
70-
, random >= 1.0 && < 1.3
70+
, random >= 1.0 && < 1.4
7171
, containers >= 0.1 && < 0.8
7272
, regex-posix >= 0.72 && < 0.97
7373
, old-locale >= 1.0 && < 1.1

quickcheck2/Test/Framework/Providers/QuickCheck2.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import Test.QuickCheck.Test
2020
#if MIN_VERSION_QuickCheck(2,7,0)
2121
import Test.QuickCheck.Random (QCGen, mkQCGen)
2222
#endif
23-
import System.Random
23+
import System.Random (randomIO)
2424

2525
import Data.Typeable
2626

quickcheck2/test-framework-quickcheck2.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ Library
5050
, QuickCheck >= 2.4 && < 2.16
5151
, base >= 4.3 && < 5
5252
, extensible-exceptions >= 0.1.1 && < 0.2.0
53-
, random >= 1 && < 1.3
53+
, random >= 1 && < 1.4
5454

5555
Ghc-Options: -Wall
5656

0 commit comments

Comments
 (0)