Skip to content

Commit 897e8f0

Browse files
committed
.cabal: relax the dep version bounds for testing.
1 parent 82a98fa commit 897e8f0

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

greskell-core/greskell-core.cabal

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ library
3030
Data.Greskell.AsIterator
3131
other-modules: Data.Greskell.GraphSON.GraphSONTyped,
3232
Data.Greskell.GraphSON.Core
33-
build-depends: base ^>=4.13.0 || ^>=4.14.0 || ^>=4.15.0 || ^>=4.16.0 || ^>=4.17.0 || ^>=4.18.0 || ^>=4.19.0 || ^>=4.20.0,
33+
build-depends: base,
3434
aeson ^>=2.0.2 || ^>=2.1.0 || ^>=2.2.3,
3535
unordered-containers ^>=0.2.15,
3636
hashable ^>=1.4.0 || ^>=1.5.0,
@@ -56,7 +56,7 @@ test-suite spec
5656
Data.Greskell.Test.QuickCheck,
5757
ExamplesSpec
5858
build-tool-depends: hspec-discover:hspec-discover
59-
build-depends: base ^>=4.13.0 || ^>=4.14.0 || ^>=4.15.0 || ^>=4.16.0 || ^>=4.17.0 || ^>=4.18.0 || ^>=4.19.0 || ^>=4.20.0,
59+
build-depends: base,
6060
text ^>=1.2.3 || ^>=2.0.2 || ^>=2.1,
6161
aeson ^>=2.0.2 || ^>=2.1.0 || ^>=2.2.3,
6262
unordered-containers ^>=0.2.15,

greskell-websocket/greskell-websocket.cabal

+3-3
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ library
4343
Network.Greskell.WebSocket.Connection.Type,
4444
Network.Greskell.WebSocket.Client.Impl,
4545
Network.Greskell.WebSocket.Util
46-
build-depends: base ^>=4.13.0 || ^>=4.14.0 || ^>=4.15.0 || ^>=4.16.0 || ^>=4.17.0 || ^>=4.18.0 || ^>=4.19.0 || ^>=4.20.0,
46+
build-depends: base,
4747
greskell-core ^>=1.0.0,
4848
bytestring ^>=0.10.9 || ^>=0.11.3 || ^>=0.12.0,
4949
base64-bytestring ^>=1.2.1,
@@ -80,7 +80,7 @@ test-suite spec
8080
other-modules: Network.Greskell.WebSocket.Codec.JSONSpec,
8181
Network.Greskell.WebSocket.ResponseSpec
8282
build-tool-depends: hspec-discover:hspec-discover
83-
build-depends: base ^>=4.13.0 || ^>=4.14.0 || ^>=4.15.0 || ^>=4.16.0 || ^>=4.17.0 || ^>=4.18.0 || ^>=4.19.0 || ^>=4.20.0,
83+
build-depends: base,
8484
greskell-websocket,
8585
aeson ^>=2.0.2 || ^>=2.1.0 || ^>=2.2.3,
8686
uuid ^>=1.3.15,
@@ -110,7 +110,7 @@ test-suite server-test
110110
ServerTest.Connection,
111111
ServerTest.Client
112112
if flag(server-test)
113-
build-depends: base ^>=4.13.0 || ^>=4.14.0 || ^>=4.15.0 || ^>=4.16.0 || ^>=4.17.0 || ^>=4.18.0 || ^>=4.19.0 || ^>=4.20.0,
113+
build-depends: base,
114114
greskell-websocket,
115115
greskell-core ^>=1.0.0,
116116
aeson ^>=2.0.2 || ^>=2.1.0 || ^>=2.2.3,

greskell/greskell.cabal

+5-5
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ library
4040
Data.Greskell.NonEmptyLike,
4141
Data.Greskell.Logic
4242
-- other-modules:
43-
build-depends: base ^>=4.13.0 || ^>=4.14.0 || ^>=4.15.0 || ^>=4.16.0 || ^>=4.17.0 || ^>=4.18.0 || ^>=4.19.0 || ^>=4.20.0,
43+
build-depends: base,
4444
greskell-core ^>=1.0.0,
4545
text ^>=1.2.3 || ^>=2.0.2 || ^>=2.1,
4646
transformers ^>=0.5.6 || ^>=0.6.1,
@@ -69,7 +69,7 @@ test-suite spec
6969
Data.Greskell.LogicSpec,
7070
ExamplesSpec
7171
build-tool-depends: hspec-discover:hspec-discover
72-
build-depends: base ^>=4.13.0 || ^>=4.14.0 || ^>=4.15.0 || ^>=4.16.0 || ^>=4.17.0 || ^>=4.18.0 || ^>=4.19.0 || ^>=4.20.0,
72+
build-depends: base,
7373
text ^>=1.2.3 || ^>=2.0.2 || ^>=2.1,
7474
aeson ^>=2.0.2 || ^>=2.1.0 || ^>=2.2.3,
7575
unordered-containers ^>=0.2.15,
@@ -84,7 +84,7 @@ test-suite typecheck-test-suite
8484
hs-source-dirs: test
8585
ghc-options: -Wall -fno-warn-unused-imports "-with-rtsopts=-M512m"
8686
main-is: Typecheck.hs
87-
build-depends: base ^>=4.13.0 || ^>=4.14.0 || ^>=4.15.0 || ^>=4.16.0 || ^>=4.17.0 || ^>=4.18.0 || ^>=4.19.0 || ^>=4.20.0,
87+
build-depends: base,
8888
hspec ^>=2.9.1 || ^>=2.10.6 || ^>=2.11.9,
8989
greskell,
9090
should-not-typecheck ^>=2.1.0
@@ -104,7 +104,7 @@ test-suite server-test-suite
104104
other-modules: ServerTest.Common
105105
if flag(server-test)
106106
-- Explicitly remove dependency. See https://github.com/haskell/cabal/issues/1725
107-
build-depends: base ^>=4.13.0 || ^>=4.14.0 || ^>=4.15.0 || ^>=4.16.0 || ^>=4.17.0 || ^>=4.18.0 || ^>=4.19.0 || ^>=4.20.0,
107+
build-depends: base,
108108
aeson ^>=2.0.2 || ^>=2.1.0 || ^>=2.2.3,
109109
hspec ^>=2.9.1 || ^>=2.10.6 || ^>=2.11.9,
110110
text ^>=1.2.3 || ^>=2.0.2 || ^>=2.1,
@@ -135,7 +135,7 @@ test-suite server-behavior-test-suite
135135
other-extensions: OverloadedStrings
136136
other-modules: ServerTest.Common
137137
if flag(server-behavior-test)
138-
build-depends: base ^>=4.13.0 || ^>=4.14.0 || ^>=4.15.0 || ^>=4.16.0 || ^>=4.17.0 || ^>=4.18.0 || ^>=4.19.0 || ^>=4.20.0,
138+
build-depends: base,
139139
aeson ^>=2.0.2 || ^>=2.1.0 || ^>=2.2.3,
140140
hspec ^>=2.9.1 || ^>=2.10.6 || ^>=2.11.9,
141141
text ^>=1.2.3 || ^>=2.0.2 || ^>=2.1,

0 commit comments

Comments
 (0)