summaryrefslogtreecommitdiff
path: root/libraries/integer-gmp/integer-gmp.cabal
diff options
context:
space:
mode:
authorRyan Scott <ryan.gl.scott@gmail.com>2019-04-09 08:52:21 -0400
committerMarge Bot <ben+marge-bot@smart-cactus.org>2019-04-09 23:23:50 -0400
commitbe0dde8e3c27ca56477d1d1801bb77621f3618e1 (patch)
treeddfb920958d6a5c5ee6d011c264d8306d86e3889 /libraries/integer-gmp/integer-gmp.cabal
parentfc3f421bd63cbf550cd0c8771aaf11e9c362f4d1 (diff)
downloadhaskell-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 'libraries/integer-gmp/integer-gmp.cabal')
-rw-r--r--libraries/integer-gmp/integer-gmp.cabal2
1 files changed, 1 insertions, 1 deletions
diff --git a/libraries/integer-gmp/integer-gmp.cabal b/libraries/integer-gmp/integer-gmp.cabal
index 008da1decb..648f500d03 100644
--- a/libraries/integer-gmp/integer-gmp.cabal
+++ b/libraries/integer-gmp/integer-gmp.cabal
@@ -58,7 +58,7 @@ library
StandaloneDeriving
UnboxedTuples
UnliftedFFITypes
- build-depends: ghc-prim >= 0.5.1.0 && <= 0.6.1
+ build-depends: ghc-prim >= 0.5.1.0 && < 0.7
hs-source-dirs: src/
-- We need to set the unit ID to integer-wired-in
-- (without a version number) as it's magic.