Hi, I installed the Mypy extension for VS Code and then tried to install the language server.
I guess it's a no, but would it be possible to unpin mypy dependency from mypy==0.782 to ^0.790?
$ poetry add "https://github.com/matangover/mypyls/archive/master.zip#egg=mypyls[default-mypy]"
Updating dependencies
Resolving dependencies... (23.1s)
SolverProblemError
Because tutorial depends on mypyls (0.2.3 url) which depends on mypy (0.782), mypy is required.
So, because tutorial depends on mypy (^0.790), version solving failed.
Hi, I installed the Mypy extension for VS Code and then tried to install the language server.
I guess it's a no, but would it be possible to unpin mypy dependency from
mypy==0.782
to^0.790
?