1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
|
Index: b/language-python.cabal
===================================================================
--- a/language-python.cabal
+++ b/language-python.cabal
@@ -1,5 +1,6 @@
name: language-python
version: 0.5.8
+x-revision: 2
cabal-version: >= 1.10
synopsis: Parsing and pretty printing of Python code.
description: language-python is a Haskell library for lexical analysis, parsing
@@ -17,7 +18,7 @@ extra-source-files: src/Language/Python
src/Language/Python/Version3/Parser/Lexer.x
src/Language/Python/Version2/Parser/Parser.y
src/Language/Python/Version2/Parser/Lexer.x
-tested-with: GHC ==7.8.4, GHC ==7.10.3, GHC ==8.0.2, GHC ==8.2.1, GHC ==8.6.3
+tested-with: GHC ==7.10.3, GHC ==8.0.2, GHC ==8.2.1, GHC ==8.6.3, GHC ==9.0.1
source-repository head
type: git
@@ -28,12 +29,12 @@ Library
hs-source-dirs: src
ghc-options: -fwarn-incomplete-patterns -fwarn-unused-imports -fwarn-warnings-deprecations
build-depends:
- base == 4.*,
- containers >= 0.5 && < 0.7,
+ base >= 4.8 && < 5,
+ containers >= 0.5 && < 0.8,
pretty == 1.1.*,
array >= 0.4 && < 0.6,
- transformers >= 0.3 && < 0.6,
- monads-tf == 0.1.*,
+ transformers >= 0.3 && < 0.7,
+ monads-tf >= 0.1 && < 0.4,
utf8-string >= 1 && < 2
build-tools: happy, alex
exposed-modules:
|