From 67282108c9d08dd8b691aef2bd4196013e896bb9 Mon Sep 17 00:00:00 2001 From: Jake Wheat Date: Wed, 2 Aug 2017 22:32:39 +0300 Subject: [PATCH] add base version in cabal file for hackage --- simple-sql-parser.cabal | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/simple-sql-parser.cabal b/simple-sql-parser.cabal index 1d3a16e..a73eaa3 100644 --- a/simple-sql-parser.cabal +++ b/simple-sql-parser.cabal @@ -33,7 +33,7 @@ library Other-Modules: Language.SQL.SimpleSQL.Errors, Language.SQL.SimpleSQL.Combinators other-extensions: TupleSections - build-depends: base , + build-depends: base >=4 && <5, parsec >=3.1 && <3.2, mtl >=2.1 && <2.3, pretty >= 1.1 && < 1.2 @@ -46,7 +46,7 @@ Test-Suite Tests type: exitcode-stdio-1.0 main-is: RunTests.lhs hs-source-dirs: .,tools - Build-Depends: base , + Build-Depends: base >=4 && <5, parsec >=3.1 && <3.2, mtl >=2.1 && <2.3, pretty >= 1.1 && < 1.2, @@ -82,7 +82,7 @@ Test-Suite Tests executable SQLIndent main-is: SQLIndent.lhs hs-source-dirs: .,tools - Build-Depends: base, + Build-Depends: base >=4 && <5, parsec >=3.1 && <3.2, mtl >=2.1 && <2.3, pretty >= 1.1 && < 1.2