Skip to content

Commit 976f78c

Browse files
committed
Put in package bounds manually
This is a workaround for the problem described in: commercialhaskell/stack#3290
1 parent 9a05d1c commit 976f78c

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

email-validate.cabal

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ source-repository this
2424
library
2525
build-depends:
2626
base >= 4.4 && < 5,
27-
attoparsec >= 0.10.0,
28-
bytestring >= 0.9,
27+
attoparsec >= 0.10.0 && < 0.14,
28+
bytestring >= 0.9 && < 0.11,
2929
template-haskell >= 2.10.0.0 && < 2.13
3030
default-language: Haskell2010
3131
hs-source-dirs: src
@@ -44,9 +44,9 @@ test-suite Main
4444
build-depends:
4545
email-validate,
4646
base >= 4 && < 5,
47-
hspec,
47+
hspec >= 2.2.3 && < 2.5,
4848
QuickCheck >= 2.4 && < 2.11,
49-
bytestring >= 0.9
49+
bytestring >= 0.9 && < 0.11
5050

5151
test-suite doctests
5252
type: exitcode-stdio-1.0

stack.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,3 @@ packages:
44
- '.'
55
extra-deps: []
66
resolver: lts-9.0
7-
pvp-bounds: both

0 commit comments

Comments
 (0)