aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2019-02-01 20:41:29 +0000
committerYann Herklotz <ymherklotz@gmail.com>2019-02-01 20:41:29 +0000
commit9105fb3b571be033672a9a546e9b95f86130ca3d (patch)
tree1292923bdb24f349db0f246be77d24cc24af8dae
parentab3f2435bb9baeadd89070f2b9f2aa88455f65a7 (diff)
downloadpfm-9105fb3b571be033672a9a546e9b95f86130ca3d.tar.gz
pfm-9105fb3b571be033672a9a546e9b95f86130ca3d.zip
Relax base bound
-rw-r--r--pfm.cabal4
1 files changed, 2 insertions, 2 deletions
diff --git a/pfm.cabal b/pfm.cabal
index bb3daaf..3fc5bc5 100644
--- a/pfm.cabal
+++ b/pfm.cabal
@@ -29,7 +29,7 @@ library
ghc-options: -Wall
exposed-modules: PFM
build-depends: attoparsec
- , base >= 4.7 && < 5
+ , base >= 4 && < 5
, bytestring
, text
, binary
@@ -40,7 +40,7 @@ executable readpfm
hs-source-dirs: app
main-is: Main.hs
default-language: Haskell2010
- build-depends: base >= 4.7 && < 5
+ build-depends: base >= 4 && < 5
, pfm
, text
, bytestring