Remove version bounds from test cabal files
This commit is contained in:
parent
0abe1d6a53
commit
5b30fdde29
@ -7,8 +7,7 @@ flag test-flag
|
|||||||
default: False
|
default: False
|
||||||
|
|
||||||
library
|
library
|
||||||
build-depends: base == 4.*
|
build-depends: base
|
||||||
|
|
||||||
if flag(test-flag)
|
if flag(test-flag)
|
||||||
build-depends: Cabal >= 1.10
|
build-depends: Cabal >= 1.10
|
||||||
|
|
||||||
|
@ -44,7 +44,7 @@ Executable ghc-mod
|
|||||||
Paths_ghc_mod
|
Paths_ghc_mod
|
||||||
Types
|
Types
|
||||||
GHC-Options: -Wall
|
GHC-Options: -Wall
|
||||||
Build-Depends: base >= 4.0 && < 5
|
Build-Depends: base
|
||||||
, Cabal >= 1.10
|
, Cabal >= 1.10
|
||||||
, template-haskell
|
, template-haskell
|
||||||
|
|
||||||
@ -59,7 +59,7 @@ Test-Suite spec
|
|||||||
LangSpec
|
LangSpec
|
||||||
LintSpec
|
LintSpec
|
||||||
ListSpec
|
ListSpec
|
||||||
Build-Depends: base >= 4.0 && < 5
|
Build-Depends: base
|
||||||
, Cabal >= 1.10
|
, Cabal >= 1.10
|
||||||
|
|
||||||
Source-Repository head
|
Source-Repository head
|
||||||
|
@ -8,5 +8,5 @@ build-type: Simple
|
|||||||
cabal-version: >=1.10
|
cabal-version: >=1.10
|
||||||
|
|
||||||
library
|
library
|
||||||
build-depends: base >=4.7 && <4.8
|
build-depends: base
|
||||||
default-language: Haskell2010
|
default-language: Haskell2010
|
@ -22,5 +22,5 @@ library
|
|||||||
executable foo
|
executable foo
|
||||||
Main-Is: main.hs
|
Main-Is: main.hs
|
||||||
GHC-Options: -Wall
|
GHC-Options: -Wall
|
||||||
Build-Depends: base >= 4 && < 5
|
Build-Depends: base
|
||||||
, ghc-mod-check
|
, ghc-mod-check
|
||||||
|
Loading…
Reference in New Issue
Block a user