summaryrefslogtreecommitdiff
path: root/__pkginfo__.py
diff options
context:
space:
mode:
authorcpopa <devnull@localhost>2014-08-24 22:13:07 +0300
committercpopa <devnull@localhost>2014-08-24 22:13:07 +0300
commit541466c31aae21c7cfbf30470f0f6a2dc0a948c3 (patch)
tree0ade50ef08c8501d4fa1f43d02f0f370ba91fccb /__pkginfo__.py
parent4f2e84100881fd39c0fe6e997f769730b4d32450 (diff)
downloadpylint-541466c31aae21c7cfbf30470f0f6a2dc0a948c3.tar.gz
Diffstat (limited to '__pkginfo__.py')
-rw-r--r--__pkginfo__.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/__pkginfo__.py b/__pkginfo__.py
index 757bfe9..f8bd352 100644
--- a/__pkginfo__.py
+++ b/__pkginfo__.py
@@ -19,14 +19,14 @@ import sys
modname = distname = 'pylint'
-numversion = (1, 3, 0)
+numversion = (1, 3, 1)
version = '.'.join([str(num) for num in numversion])
if sys.version_info < (2, 6):
- install_requires = ['logilab-common >= 0.53.0', 'astroid >= 1.2',
+ install_requires = ['logilab-common >= 0.53.0', 'astroid >= 1.2.1',
'StringFormat']
else:
- install_requires = ['logilab-common >= 0.53.0', 'astroid >= 1.2']
+ install_requires = ['logilab-common >= 0.53.0', 'astroid >= 1.2.1']
license = 'GPL'
description = "python code static checker"