diff options
author | Ryan Scott <ryan.gl.scott@gmail.com> | 2019-04-09 08:52:21 -0400 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2019-04-09 23:23:50 -0400 |
commit | be0dde8e3c27ca56477d1d1801bb77621f3618e1 (patch) | |
tree | ddfb920958d6a5c5ee6d011c264d8306d86e3889 /ghc/ghc-bin.cabal.in | |
parent | fc3f421bd63cbf550cd0c8771aaf11e9c362f4d1 (diff) | |
download | haskell-be0dde8e3c27ca56477d1d1801bb77621f3618e1.tar.gz |
Use ghc-prim < 0.7, not <= 0.6.1, as upper version bounds
Using `ghc-prim <= 0.6.1` is somewhat dodgy from a PVP point of view,
as it makes it awkward to support new minor releases of `ghc-prim`.
Let's instead use `< 0.7`, which is the idiomatic way of expressing
PVP-compliant upper version bounds.
Diffstat (limited to 'ghc/ghc-bin.cabal.in')
-rw-r--r-- | ghc/ghc-bin.cabal.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ghc/ghc-bin.cabal.in b/ghc/ghc-bin.cabal.in index 279e1274a9..0c2cb2db6d 100644 --- a/ghc/ghc-bin.cabal.in +++ b/ghc/ghc-bin.cabal.in @@ -58,7 +58,7 @@ Executable ghc Build-depends: containers >= 0.5 && < 0.7, deepseq == 1.4.*, - ghc-prim >= 0.5.0 && <= 0.6.1, + ghc-prim >= 0.5.0 && < 0.7, ghci == @ProjectVersionMunged@, haskeline == 0.7.*, time >= 1.8 && < 1.10, |