Skip to content

Commit 120bed0

Browse files
committed
RadonBear: Pin to version 1.4.0
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
1 parent aa76d08 commit 120bed0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

bears/python/RadonBear.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
class RadonBear(LocalBear):
1313
LANGUAGES = {'Python', 'Python 2', 'Python 3'}
14-
REQUIREMENTS = {PipRequirement('radon', '1.4')}
14+
REQUIREMENTS = {PipRequirement('radon', '1.4.0')}
1515
AUTHORS = {'The coala developers'}
1616
AUTHORS_EMAILS = {'coala-devel@googlegroups.com'}
1717
LICENSE = 'AGPL-3.0'

requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ html-linter~=0.3
1414
# Do *not* use 0.3 which is not backwards compatible to common clang versions
1515
libclang-py3==0.2
1616
guess-language-spirit~=0.5
17-
radon~=1.4
17+
radon==1.4.0
1818
requests~=2.12
1919
yamllint~=1.5
2020
cppclean~=0.12

0 commit comments

Comments
 (0)