summaryrefslogtreecommitdiff
path: root/__pkginfo__.py
diff options
context:
space:
mode:
authorBrett Cannon <brett@python.org>2014-08-29 15:48:24 -0400
committerBrett Cannon <brett@python.org>2014-08-29 15:48:24 -0400
commit8e23aa2b179274c9c1b128a8b3daf8d2e24cfd75 (patch)
treec234e08aa390be9bca941e66e508071e5e44a801 /__pkginfo__.py
parent001469c8272a235b4f62b9b5c3ee248635168ad4 (diff)
parentc2cc31874880d7f0d5bd444c6a3b17fa817e2509 (diff)
downloadpylint-python_6.tar.gz
Merge with defaultpython_6
Diffstat (limited to '__pkginfo__.py')
-rw-r--r--__pkginfo__.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/__pkginfo__.py b/__pkginfo__.py
index 757bfe9..255c6c1 100644
--- a/__pkginfo__.py
+++ b/__pkginfo__.py
@@ -22,11 +22,9 @@ modname = distname = 'pylint'
numversion = (1, 3, 0)
version = '.'.join([str(num) for num in numversion])
+install_requires = ['logilab-common >= 0.53.0', 'astroid >= 1.2', 'six']
if sys.version_info < (2, 6):
- install_requires = ['logilab-common >= 0.53.0', 'astroid >= 1.2',
- 'StringFormat']
-else:
- install_requires = ['logilab-common >= 0.53.0', 'astroid >= 1.2']
+ install_requires.append('StringFormat')
license = 'GPL'
description = "python code static checker"