Commit 99c9716c authored by Clint Adams's avatar Clint Adams
Browse files

some patch updates

parent 6f395255
Loading
Loading
Loading
Loading
+25 −0
Original line number Diff line number Diff line
--- a/aeson.cabal
+++ b/aeson.cabal
@@ -200,19 +200,19 @@
 
   build-depends:
     HUnit,
-    QuickCheck >= 2.10.0.1 && < 2.11,
+    QuickCheck >= 2.10.0.1 && < 2.12,
     aeson,
     integer-logarithms >= 1 && <1.1,
     attoparsec,
     base,
     base-compat,
-    base-orphans >= 0.5.3 && <0.7,
+    base-orphans >= 0.5.3 && <0.8,
     base16-bytestring,
     containers,
     directory,
     dlist,
     filepath,
-    generic-deriving >= 1.10 && < 1.12,
+    generic-deriving >= 1.10 && < 1.13,
     ghc-prim >= 0.2,
     hashable >= 1.2.4.0,
     scientific,
+1 −0
Original line number Diff line number Diff line
newer-deps
+22 −0
Original line number Diff line number Diff line
--- a/attoparsec.cabal
+++ b/attoparsec.cabal
@@ -127,7 +127,7 @@
     base >= 4 && < 5,
     bytestring,
     deepseq >= 1.1,
-    QuickCheck >= 2.7 && < 2.10,
+    QuickCheck >= 2.7 && < 2.12,
     quickcheck-unicode,
     scientific,
     tasty >= 0.11,
--- a/tests/QC/ByteString.hs
+++ b/tests/QC/ByteString.hs
@@ -164,7 +164,7 @@
     , testProperty "peekWord8" peekWord8
     , testProperty "peekWord8'" peekWord8'
     , testProperty "satisfy" satisfy
-    , testProperty "satisfyWith" satisfyWith
+    , testProperty "satisfyWith" (forAll arbitraryASCIIChar satisfyWith)
     , testProperty "scan" scan
     , testProperty "skip" skip
     , testProperty "skipWhile" skipWhile
+14 −0
Original line number Diff line number Diff line
Description:  Do not run test suite threaded, does not work on all arches.
Author: Joachim Breitner <nomeata@debian.org>

--- a/attoparsec.cabal
+++ b/attoparsec.cabal
@@ -117,7 +117,7 @@
                   Data.Attoparsec.Zepto
 
   ghc-options:
-    -Wall -threaded -rtsopts
+    -Wall -rtsopts
 
   if flag(developer)
     ghc-options: -Werror
+2 −0
Original line number Diff line number Diff line
no-threaded-testsuite
newer-quickcheck
Loading