Integralist / vim-mypy

Vim plugin for executing Python's optional static type checker MyPy (http://mypy-lang.org/)
MIT License
98 stars 15 forks source link

unrecognized arguments --fast-parser #3

Open AdrienLemaire opened 5 years ago

AdrienLemaire commented 5 years ago

Installed mypy 0.670-1 from aur and vim-mypy with plug.

Plug 'Integralist/vim-mypy', { 'for': 'python' }

Executing :Mypy I get this:

:Mypy                                                                                                                                
:!mypy --ignore-missing-imports --follow-imports=skip --fast-parser app/models/user.py
usage: mypy [-h] [-v] [-V] [more options; see below]
            [-m MODULE] [-p PACKAGE] [-c PROGRAM_TEXT] [files ...]
mypy: error: unrecognized arguments: --fast-parser

shell returned 2
AdrienLemaire commented 5 years ago

Sems like a fix was offered in 2017

https://github.com/Integralist/vim-mypy/pull/2

Is this repo dead ?

Temporary fix:

- Plug 'Integralist/vim-mypy', { 'for': 'python' }
+ Plug 'flebel/vim-mypy', { 'for': 'python', 'branch': 'bugfix/fast_parser_is_default_and_only_parser' }