Skip to content

Commit 7f32ec6

Browse files
committed
Constraint the upper bound of base to the latest major range
Don't include the invalid (non-existent) major ranges
1 parent 3303e24 commit 7f32ec6

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

unicode-transforms.cabal

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ library
8282
hs-source-dirs: .
8383
ghc-options: -Wall -fwarn-identities -fwarn-incomplete-record-updates -fwarn-incomplete-uni-patterns -fwarn-tabs
8484
build-depends:
85-
base >= 4.8 && < 5
85+
base >= 4.8 && < 4.17
8686
, unicode-data >= 0.2 && < 0.4
8787
, bytestring >= 0.9 && < 0.12
8888
, ghc-prim >= 0.2 && < 0.9
@@ -108,7 +108,7 @@ test-suite extras
108108
ghc-options: -Wall -fwarn-identities -fwarn-incomplete-record-updates -fwarn-incomplete-uni-patterns -fwarn-tabs
109109
build-depends:
110110
QuickCheck >=2.1 && <2.15
111-
, base >=4.7 && <5
111+
, base >=4.7 && <4.17
112112
, deepseq >=1.1 && <1.5
113113
, text
114114
, unicode-transforms
@@ -131,7 +131,7 @@ test-suite quickcheck
131131
build-depends:
132132
QuickCheck >= 2.1 && < 2.15
133133
, unicode-data >= 0.2 && < 0.4
134-
, base >= 4.7 && < 5
134+
, base >= 4.7 && < 4.17
135135
, deepseq >= 1.1 && < 1.5
136136
, hspec >= 2.0 && < 3
137137
, text
@@ -155,7 +155,7 @@ test-suite ucd
155155
test
156156
ghc-options: -Wall -fwarn-identities -fwarn-incomplete-record-updates -fwarn-incomplete-uni-patterns -fwarn-tabs
157157
build-depends:
158-
base >=4.7 && <5
158+
base >=4.7 && <4.17
159159
, bytestring
160160
, split >=0.1 && <0.3
161161
, text
@@ -175,7 +175,7 @@ benchmark bench
175175
benchmark
176176
ghc-options: -Wall -fwarn-identities -fwarn-incomplete-record-updates -fwarn-incomplete-uni-patterns -fwarn-tabs
177177
build-depends:
178-
base >=4.7 && <5
178+
base >=4.7 && <4.17
179179
, deepseq >=1.1.0 && <1.5
180180
, filepath >=1.0 && <2
181181
, path >=0.0.0 && <0.9
@@ -209,7 +209,7 @@ executable chart
209209
if flag(bench-show)
210210
buildable: True
211211
build-Depends:
212-
base >= 4.8 && < 5
212+
base >= 4.8 && < 4.17
213213
, bench-show >= 0.3 && < 0.4
214214
, split >= 0.2 && < 0.3
215215
, transformers >= 0.4 && < 0.6

0 commit comments

Comments
 (0)