Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(208)

Unified Diff: third_party/pylint/__pkginfo__.py

Issue 753543006: pylint: upgrade to 1.4.0 (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@master
Patch Set: Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/pylint/__init__.py ('k') | third_party/pylint/checkers/__init__.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/pylint/__pkginfo__.py
diff --git a/third_party/pylint/__pkginfo__.py b/third_party/pylint/__pkginfo__.py
index f8bd352b2377e11b0d08a427f7f00d6bf9c8cafc..acca3b72c1364f89600776cf56b3aad32d8bfbb1 100644
--- a/third_party/pylint/__pkginfo__.py
+++ b/third_party/pylint/__pkginfo__.py
@@ -15,18 +15,14 @@
# this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
"""pylint packaging information"""
-import sys
+from __future__ import absolute_import
modname = distname = 'pylint'
-numversion = (1, 3, 1)
+numversion = (1, 4, 0)
version = '.'.join([str(num) for num in numversion])
-if sys.version_info < (2, 6):
- install_requires = ['logilab-common >= 0.53.0', 'astroid >= 1.2.1',
- 'StringFormat']
-else:
- install_requires = ['logilab-common >= 0.53.0', 'astroid >= 1.2.1']
+install_requires = ['logilab-common >= 0.53.0', 'astroid >= 1.3.2', 'six']
license = 'GPL'
description = "python code static checker"
« no previous file with comments | « third_party/pylint/__init__.py ('k') | third_party/pylint/checkers/__init__.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698