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.
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
Showing
3 changed files
with
5 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,6 +31,7 @@ | |
|
||
PINNED_PACKAGES = ( | ||
'radon', | ||
'click', | ||
) | ||
|
||
|
||
|
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 |
---|---|---|
@@ -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 | ||
|
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 |
---|---|---|
|
@@ -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' | ||
|