From 962df748655338b083a77b6931e9b6492c68ca8d Mon Sep 17 00:00:00 2001
From: Florian Franzmann <bwlf@bandrate.org>
Date: Thu, 1 Nov 2018 19:11:47 +0100
Subject: [PATCH] fix compatibility with ghc 8.6.1

---
 HTTP.cabal | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/HTTP.cabal b/HTTP.cabal
index e156d97..70924d0 100644
--- a/HTTP.cabal
+++ b/HTTP.cabal
@@ -109,7 +109,7 @@ Library
 
   -- note the test harness constraints should be kept in sync with these
   -- where dependencies are shared
-  Build-depends: base >= 4.3.0.0 && < 4.12, parsec >= 2.0 && < 3.2
+  Build-depends: base >= 4.3.0.0, parsec >= 2.0 && < 3.2
   Build-depends: array >= 0.3.0.2 && < 0.6, bytestring >= 0.9.1.5 && < 0.11
   Build-depends: time >= 1.1.2.3 && < 1.10
 
@@ -151,7 +151,7 @@ Test-Suite test
                      bytestring >= 0.9.1.5 && < 0.11,
                      deepseq >= 1.3.0.0 && < 1.5,
                      pureMD5 >= 0.2.4 && < 2.2,
-                     base >= 4.3.0.0 && < 4.12,
+                     base >= 4.3.0.0,
                      split >= 0.1.3 && < 0.3,
                      test-framework >= 0.2.0 && < 0.9,
                      test-framework-hunit >= 0.3.0 && <0.4
-- 
2.19.1

