diff options
author | Claudiu Popa <cpopa@cloudbasesolutions.com> | 2014-11-23 11:06:19 +0200 |
---|---|---|
committer | Claudiu Popa <cpopa@cloudbasesolutions.com> | 2014-11-23 11:06:19 +0200 |
commit | de172c523fa0dcd2bb5582699a8495a6abeb31d9 (patch) | |
tree | acf04e16af309e4aefd0a88ccb107a593fb74cb0 | |
parent | ae72d1c9bae9a954308470834809b4d51f647ac9 (diff) | |
download | pylint-git-pylint-1.4.tar.gz |
Prepare the 1.4.0 release.pylint-1.4
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | __pkginfo__.py | 4 |
2 files changed, 4 insertions, 3 deletions
@@ -1,7 +1,8 @@ ChangeLog for Pylint ==================== --- +2014-11-23 -- 1.4.0 + * Added new options for controlling the loading of C extensions. By default, only C extensions from the stdlib will be loaded into the active Python interpreter for inspection, because they diff --git a/__pkginfo__.py b/__pkginfo__.py index 51ffe6a71..acca3b72c 100644 --- a/__pkginfo__.py +++ b/__pkginfo__.py @@ -19,10 +19,10 @@ from __future__ import absolute_import modname = distname = 'pylint' -numversion = (1, 3, 0) +numversion = (1, 4, 0) version = '.'.join([str(num) for num in numversion]) -install_requires = ['logilab-common >= 0.53.0', 'astroid >= 1.2', 'six'] +install_requires = ['logilab-common >= 0.53.0', 'astroid >= 1.3.2', 'six'] license = 'GPL' description = "python code static checker" |