Skip to content

Commit

Permalink
requirements.txt: Add click 6.6
Browse files Browse the repository at this point in the history
coala builds are currently failing. This is a hotfix. We should revert
this when mozilla/dennis#91 gets resolved or
alternatively remove DennisBear.

The dennis requirement is indirect while pip picks up this one:

    Collecting Click>=6.0 (from safety~=0.5.1->coala-bears[alldeps])

This fixes it to 6.6 so everything works temporarily.
  • Loading branch information
sils committed Jan 10, 2017
1 parent 9c1a0bf commit f0e8955
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions .ci/generate_bear_requirements.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@

PINNED_PACKAGES = (
'radon',
'click',
)


Expand Down
1 change: 1 addition & 0 deletions bear-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
autoflake~=0.6.6
autopep8~=1.2
bandit~=1.2
click==6.6
cmakelint~=1.3
cppclean~=0.12.0
cpplint~=1.3
Expand Down
4 changes: 3 additions & 1 deletion bears/gettext/DennisBear.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ class DennisBear:
"""

LANGUAGES = {'po', 'pot'}
REQUIREMENTS = {PipRequirement('dennis', '0.8')}
REQUIREMENTS = {PipRequirement('dennis', '0.8'),
# Workaround for https://github.com/willkg/dennis/issues/91
PipRequirement('click', '6.6')}
AUTHORS = {'The coala developers'}
AUTHORS_EMAILS = {'[email protected]'}
LICENSE = 'AGPL-3.0'
Expand Down

0 comments on commit f0e8955

Please sign in to comment.