Skip to content

Commit

Permalink
Put upper bounds on all the build-depends
Browse files Browse the repository at this point in the history
  • Loading branch information
dcoutts committed Jun 12, 2008
1 parent 3e56e3f commit 2e8f514
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions Cabal.cabal
Expand Up @@ -30,11 +30,16 @@ Flag small_base

Library
if flag(small_base)
Build-Depends: base >= 3, directory, process, old-time,
containers, array, pretty
Build-Depends: base >= 3 && < 4,
directory >= 1 && < 1.1,
process >= 1 && < 1.1,
old-time >= 1 && < 1.1,
containers >= 0.1 && < 0.2,
array >= 0.1 && < 0.2,
pretty >= 1 && < 1.1
else
Build-Depends: base < 3
Build-Depends: filepath
Build-Depends: filepath >= 1 && < 1.2

GHC-Options: -Wall
CPP-Options: "-DCABAL_VERSION=1,3,12"
Expand Down

0 comments on commit 2e8f514

Please sign in to comment.