Skip to content

Commit

Permalink
Fix cabal bounds
Browse files Browse the repository at this point in the history
  • Loading branch information
bgamari committed Aug 16, 2015
1 parent 30b1cf6 commit a824564
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion cabal-install-lib/cabal-install-lib.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ library
build-depends: array >= 0.1 && < 0.6,
base >= 4.3 && < 5,
bytestring >= 0.9 && < 1,
Cabal >= 1.23 && < 1.24,
Cabal >= 1.22 && < 1.24,
containers >= 0.1 && < 0.6,
filepath >= 1.0 && < 1.5,
time >= 1.1 && < 1.6
Expand Down
10 changes: 5 additions & 5 deletions cabal-install-solver/cabal-install-solver.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -53,13 +53,13 @@ library

-- NOTE: when updating build-depends, don't forget to update version regexps
-- in bootstrap.sh.
build-depends: base >= 4.3 && <5,
build-depends: array >= 0.1 && <0.6,
base >= 4.3 && <5,
Cabal >= 1.22 && <1.24,
cabal-install-lib >= 1.22 && <1.24,
pretty >= 1.1 && <1.2,
containers >= 0.5 && <0.6,
array >= 0.5 && <0.6,
mtl >= 2.2 && <2.3
containers >= 0.1 && <0.6,
mtl >= 2.0 && <2.3,
pretty >= 1 && <1.2

default-language: Haskell2010
other-extensions: CPP, DeriveFunctor, RecordWildCards, DeriveFoldable, DeriveTraversable, GeneralizedNewtypeDeriving

0 comments on commit a824564

Please sign in to comment.