Skip to content

Commit ec166a3

Browse files
authored
added correct version bounds for dependencies (#41)
1 parent 76495d7 commit ec166a3

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

docopt.cabal

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ library
4444
System.Console.Docopt.Public
4545

4646
build-depends: base >= 4.9 && < 5.0,
47-
parsec >= 3.1.0,
48-
containers
47+
parsec >= 3.1.14 && < 3.2,
48+
containers >= 0.6.2 && < 0.7
4949

5050
ghc-options: -Wall
5151
-fno-warn-unused-binds
@@ -57,8 +57,8 @@ library
5757
exposed-modules: System.Console.Docopt
5858
other-modules: System.Console.Docopt.QQ
5959
System.Console.Docopt.QQ.Instances
60-
build-depends: template-haskell,
61-
th-lift
60+
build-depends: template-haskell >= 2.15.0 && < 2.16,
61+
th-lift >= 0.8.2 && < 0.9
6262

6363
test-suite tests
6464
type: exitcode-stdio-1.0
@@ -73,17 +73,17 @@ test-suite tests
7373
-fno-warn-orphans
7474

7575
build-depends: base,
76-
parsec,
77-
containers,
76+
parsec >= 3.1.14 && < 3.2,
77+
containers >= 0.6.2 && < 0.7,
7878
docopt,
7979
HUnit,
8080
split,
8181
ansi-terminal,
8282
aeson,
8383
bytestring,
8484
text,
85-
template-haskell,
86-
th-lift
85+
template-haskell >= 2.15.0 && < 2.16,
86+
th-lift >= 0.8.2 && < 0.9
8787

8888
other-modules: System.Console.Docopt
8989
System.Console.Docopt.ApplicativeParsec

0 commit comments

Comments
 (0)