forked from coala/coala-bears
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
radon 1.4.2 added a dependency on flake8-polyfill, which depends on flake8 without any version specification, and flake8 versions have various version dependencies on pyflakes and pycodestyle. As a result, it is not possible to know what versions of pyflakes and pycodestyle that will be required to be compatible with whatever flake8 version happens to be installed. Fixes coala#1228
- Loading branch information
Showing
4 changed files
with
12 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,7 +18,7 @@ class PyFlakesBear: | |
See https://github.com/PyCQA/pyflakes for more info. | ||
""" | ||
LANGUAGES = {'Python', 'Python 3'} | ||
REQUIREMENTS = {PipRequirement('pyflakes', '1.3.0')} | ||
REQUIREMENTS = {PipRequirement('pyflakes', '1.4.0')} | ||
AUTHORS = {'The coala developers'} | ||
AUTHORS_EMAILS = {'[email protected]'} | ||
LICENSE = 'AGPL-3.0' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ | |
|
||
class RadonBear(LocalBear): | ||
LANGUAGES = {'Python', 'Python 2', 'Python 3'} | ||
REQUIREMENTS = {PipRequirement('radon', '1.4')} | ||
REQUIREMENTS = {PipRequirement('radon', '1.4.0')} | ||
AUTHORS = {'The coala developers'} | ||
AUTHORS_EMAILS = {'[email protected]'} | ||
LICENSE = 'AGPL-3.0' | ||
|