From 78369b0c64ffcdea71b36770eacebdd67b6053c5 Mon Sep 17 00:00:00 2001 From: carlio Date: Sun, 30 Nov 2014 12:59:49 +0100 Subject: [PATCH] Restricting pylint version to 1.3 to ensure that prospector still can handle Python 2.6 in the 0.7 releases. Python 2.6 support will be removed (and therefore pylint 1.4+ will be added) in the 0.8 releases --- CHANGELOG.md | 1 + setup.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index abc73340..90544889 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,7 @@ Prospector Changelog ## Version 0.7.3 +* Pylint dependency version restricted to 1.3, as 1.4 drops support for Python 2.6. Prospector will drop support for Python 2.6 in a 0.8 release. * File names ending in 'tests.py' will now be ignored if prospector is set to ignore tests (previously, the regular expression only ignored files ending in 'test.py') * [#70](https://github.com/landscapeio/prospector/issues/70) Profiles starting with a `.yml` extension can now be autoloaded * [#62](https://github.com/landscapeio/prospector/issues/62) For human readable output, the summary of messages will now be printed at the end rather than at the start, so the summary will be what users see when running prospector (without piping into `less` etc) diff --git a/setup.py b/setup.py index 346d9d07..306b62de 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ _PACKAGES = find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]) _INSTALL_REQUIRES = [ - 'pylint>=1.3', + 'pylint>=1.3,<1.4', 'pylint-celery>=0.3', 'pylint-django>=0.5.5', 'pylint-plugin-utils>=0.2.2',