From aa76d08a1877669f5925805556f38320cc91838d Mon Sep 17 00:00:00 2001 From: John Vandenberg Date: Tue, 3 Jan 2017 02:30:27 +0700 Subject: [PATCH 1/2] requirements: Require coala 0.9.1+ coala-bears 0.9 should not be used with coala 0.10 --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 6fc9af5e4f..207ded8b92 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ # Use >= for development versions so that source builds always work -coala~=0.9 +coala~=0.9.1 munkres3~=1.0 pylint~=1.6 autopep8~=1.2 From 120bed08cc7562e5a2ab9f6bd645c3d4fca18439 Mon Sep 17 00:00:00 2001 From: John Vandenberg Date: Tue, 3 Jan 2017 01:16:48 +0700 Subject: [PATCH 2/2] 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 https://github.com/coala/coala-bears/issues/1228 --- bears/python/RadonBear.py | 2 +- requirements.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bears/python/RadonBear.py b/bears/python/RadonBear.py index 2a4957ea24..96c5f0ee56 100644 --- a/bears/python/RadonBear.py +++ b/bears/python/RadonBear.py @@ -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 = {'coala-devel@googlegroups.com'} LICENSE = 'AGPL-3.0' diff --git a/requirements.txt b/requirements.txt index 207ded8b92..be3022bb6e 100644 --- a/requirements.txt +++ b/requirements.txt @@ -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