Skip to content

Commit

Permalink
Restricting pylint version to 1.3 to ensure that prospector still can…
Browse files Browse the repository at this point in the history
… 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
  • Loading branch information
carlio committed Nov 30, 2014
1 parent c67c276 commit 78369b0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit 78369b0

Please sign in to comment.