updated upper limit for cabal

This commit is contained in:
Yann Esposito (Yogsototh) 2014-04-19 09:04:45 +02:00
parent 378b42b585
commit 2b96e21407
2 changed files with 8 additions and 8 deletions

View file

@ -43,7 +43,7 @@ executable holy-project
main-is: Main.hs
-- other-modules:
-- other-extensions:
build-depends: base
build-depends: base >= 4.6 && < 5
, ansi-terminal >= 0.6.1.1
, split
, hastache
@ -73,7 +73,7 @@ library
, HolyProject.MontyPython
-- other-modules:
-- other-extensions:
build-depends: base
build-depends: base >= 4.6 && < 5
, ansi-terminal >= 0.6.1.1
, split
, hastache
@ -100,7 +100,7 @@ executable test-holy-project
other-modules: HolyProject.GithubAPI.Test
, HolyProject.StringUtils.Test
default-language: Haskell2010
build-depends: base >=4.6
build-depends: base >=4.6 && < 5
, Cabal >= 1.18.0
, bytestring >= 0.10.4.0
, holy-project
@ -118,7 +118,7 @@ test-suite Tests
main-is: Test.hs
Type: exitcode-stdio-1.0
default-language: Haskell2010
build-depends: base >= 4.6
build-depends: base >= 4.6 && < 5
, Cabal >= 1.18.0
, bytestring >= 0.10.4.0
, holy-project

View file

@ -25,7 +25,7 @@ executable {{projectName}}
main-is: Main.hs
-- other-modules:
-- other-extensions:
build-depends: base >=4.6
build-depends: base >=4.6 && <5
hs-source-dirs: src
ghc-options: -Wall
default-language: Haskell2010
@ -36,7 +36,7 @@ library
, {{moduleName}}.Coconut
-- other-modules:
-- other-extensions:
build-depends: base >=4.6
build-depends: base >=4.6 && <5
ghc-options: -Wall
hs-source-dirs: src
default-language: Haskell2010
@ -46,7 +46,7 @@ executable test-{{projectName}}
ghc-options: -Wall
main-is: Test.hs
default-language: Haskell2010
build-depends: base >=4.6
build-depends: base >=4.6 && <5
, Cabal >= 1.16.0
, {{projectName}}
, HUnit
@ -63,7 +63,7 @@ test-suite Tests
main-is: Test.hs
Type: exitcode-stdio-1.0
default-language: Haskell2010
build-depends: base >=4.6
build-depends: base >=4.6 && <5
, Cabal >= 1.16.0
, {{projectName}}
, HUnit