summaryrefslogtreecommitdiff
path: root/__pkginfo__.py
diff options
context:
space:
mode:
authorClaudiu Popa <pcmanticore@gmail.com>2014-08-24 22:13:07 +0300
committerClaudiu Popa <pcmanticore@gmail.com>2014-08-24 22:13:07 +0300
commiteaa59f6f26841d45ed2c6efff7d8dcaf4889f423 (patch)
tree559ace29b620a12e9ed650f611df6896bc7c2ea3 /__pkginfo__.py
parent6d19e33ba6eb634e22800effe91c110e58cd3852 (diff)
downloadpylint-git-pylint-1.3.1.tar.gz
--HG-- branch : pylint-1.3
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 757bfe94b..f8bd352b2 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"