about summary refs log tree commit diff
diff options
context:
space:
mode:
authorsternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org>2020-12-25 18:50:27 +0100
committersternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org>2020-12-25 18:50:27 +0100
commit65a75e7d5f650aa67bedbe57853da898a776ef42 (patch)
treec4027e3a4f83b56523699561d6768e69fa7585ca
parent96d06acd691229c243d7bcafe7df279b90a3c3c9 (diff)
chore(cabal): relax version bounds
-rw-r--r--grav2ty.cabal18
1 files changed, 9 insertions, 9 deletions
diff --git a/grav2ty.cabal b/grav2ty.cabal
index a45f506..44ba47d 100644
--- a/grav2ty.cabal
+++ b/grav2ty.cabal
@@ -26,14 +26,14 @@ library grav2ty-lib
                      , Grav2ty.Util.RelGraph
                      , Grav2ty.Util.Serialization
   -- other-extensions:
-  build-depends:       base ^>=4.12.0.0
-                     , containers ^>=0.6.0.1
-                     , linear ^>=1.20.8
-                     , lens ^>= 4.17.1
-                     , transformers^>=0.5.6.2
-                     , bytestring ^>=0.10.8.2
-                     , flat^>=0.3.4
-                     , attoparsec^>=0.13.2.3
+  build-depends:       base >=4.12 && <5
+                     , containers ^>=0.6
+                     , linear >=1.20 && <1.22
+                     , lens >=4.17 && <4.20
+                     , transformers^>=0.5
+                     , bytestring ^>=0.10
+                     , flat^>=0.4
+                     , attoparsec^>=0.13
   hs-source-dirs:      lib
   default-language:    Haskell2010
 
@@ -52,7 +52,7 @@ library grav2ty-lib
 test-suite lib-test
   type:                exitcode-stdio-1.0
   main-is:             test/Main.hs
-  build-depends:       base ^>=4.12.0.0
+  build-depends:       base >=4.12 && <5
                      , tasty ^>=1.2
                      , tasty-quickcheck ^>=0.10
                      , grav2ty-lib