1
Fork 0

add base version in cabal file for hackage

This commit is contained in:
Jake Wheat 2017-08-02 22:32:39 +03:00
parent 57e5004328
commit 67282108c9

View file

@ -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