diff options
| author | Brett Cannon <brett@python.org> | 2014-08-29 15:48:24 -0400 |
|---|---|---|
| committer | Brett Cannon <brett@python.org> | 2014-08-29 15:48:24 -0400 |
| commit | 8e23aa2b179274c9c1b128a8b3daf8d2e24cfd75 (patch) | |
| tree | c234e08aa390be9bca941e66e508071e5e44a801 /__pkginfo__.py | |
| parent | 001469c8272a235b4f62b9b5c3ee248635168ad4 (diff) | |
| parent | c2cc31874880d7f0d5bd444c6a3b17fa817e2509 (diff) | |
| download | pylint-python_6.tar.gz | |
Merge with defaultpython_6
Diffstat (limited to '__pkginfo__.py')
| -rw-r--r-- | __pkginfo__.py | 6 |
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" |
