Skip to content

Commit

Permalink
RadonBear: Pin to version 1.4.0
Browse files Browse the repository at this point in the history
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 #1228
  • Loading branch information
jayvdb committed Jan 2, 2017
1 parent aa76d08 commit 120bed0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bears/python/RadonBear.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ html-linter~=0.3
# Do *not* use 0.3 which is not backwards compatible to common clang versions
libclang-py3==0.2
guess-language-spirit~=0.5
radon~=1.4
radon==1.4.0
requests~=2.12
yamllint~=1.5
cppclean~=0.12
Expand Down

0 comments on commit 120bed0

Please sign in to comment.