summaryrefslogtreecommitdiff
path: root/__pkginfo__.py
diff options
context:
space:
mode:
authorClaudiu Popa <pcmanticore@gmail.com>2014-07-29 15:15:41 +0300
committerClaudiu Popa <pcmanticore@gmail.com>2014-07-29 15:15:41 +0300
commit4fb9c4a7e4ca3821f442dfa863bc545d269c42a5 (patch)
treef5932029203057b3aaf2f6da7309973bf293f3eb /__pkginfo__.py
parent562911b3f771acda675c123524c0d8840999c3dc (diff)
downloadpylint-git-4fb9c4a7e4ca3821f442dfa863bc545d269c42a5.tar.gz
Fix dependencies on astroid.
Diffstat (limited to '__pkginfo__.py')
-rw-r--r--__pkginfo__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/__pkginfo__.py b/__pkginfo__.py
index 14c2cc18b..757bfe94b 100644
--- a/__pkginfo__.py
+++ b/__pkginfo__.py
@@ -23,10 +23,10 @@ numversion = (1, 3, 0)
version = '.'.join([str(num) for num in numversion])
if sys.version_info < (2, 6):
- install_requires = ['logilab-common >= 0.53.0', 'astroid >= 1.1',
+ install_requires = ['logilab-common >= 0.53.0', 'astroid >= 1.2',
'StringFormat']
else:
- install_requires = ['logilab-common >= 0.53.0', 'astroid >= 1.1']
+ install_requires = ['logilab-common >= 0.53.0', 'astroid >= 1.2']
license = 'GPL'
description = "python code static checker"