Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bear-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ libclang-py3~=3.4.0
lxml>=1.0,<4.4.0
memento-client~=0.6.1
munkres~=1.1.2
mypy==0.590
mypy>=0.590
nbformat~=4.1
nltk~=3.2
proselint~=0.7.0
Expand Down
2 changes: 1 addition & 1 deletion bear-requirements.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ pip_requirements:
munkres:
version: ~=1.1.2
mypy:
version: ==0.590
version: >=0.590
nbformat:
version: ~=4.1
nltk:
Expand Down
2 changes: 1 addition & 1 deletion bears/python/MypyBear.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ class MypyBear:

LANGUAGES = {'Python', 'Python 2', 'Python 3'}
AUTHORS = {'Petr Viktorin'}
REQUIREMENTS = {PipRequirement('mypy', '==0.590')}
REQUIREMENTS = {PipRequirement('mypy', '>=0.590')}
AUTHORS_EMAILS = {'[email protected]'}
LICENSE = 'AGPL-3.0'
ASCIINEMA_URL = 'https://asciinema.org/a/90736'
Expand Down