diff options
Diffstat (limited to '__pkginfo__.py')
-rw-r--r-- | __pkginfo__.py | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/__pkginfo__.py b/__pkginfo__.py index 5fc62fae9..4b0edcb51 100644 --- a/__pkginfo__.py +++ b/__pkginfo__.py @@ -18,11 +18,10 @@ modname = distname = 'pylint' -numversion = (0, 21, 4) +numversion = (0, 22, 0) version = '.'.join([str(num) for num in numversion]) -install_requires = ['logilab-common >= 0.52.1', - 'logilab-astng >= 0.20.4'] +install_requires = ['logilab-common >= 0.53.0', 'logilab-astng >= 0.21.0'] license = 'GPL' description = "python code static checker" @@ -58,8 +57,6 @@ long_desc = """\ . Additionally, it is possible to write plugins to add your own checks.""" -pyversions = ["2.3", "2.4", "2.5", '2.6', "2.7"] - from os.path import join scripts = [join('bin', filename) for filename in ('pylint', 'pylint-gui', "symilar", "epylint", |