This commit introduced Mypy as a wordfreq dependency, but there doesn't appear to be any runtime functionality provided by this dependency. I use a newer version of Mypy in one of my projects, which causes the following error when I try to install wordfreq:
Because wordfreq (3.0.0) depends on mypy (>=0.931,<0.932)
and no versions of wordfreq match >3.0.0,<4.0.0, wordfreq (>=3.0.0,<4.0.0) requires mypy (>=0.931,<0.932).
So, because my-project depends on both mypy (0.941) and wordfreq (^3.0.0), version solving failed.
Since there's no need to include Mypy as a main dependency, could it be moved to the dev dependencies for this project?
In the meantime, I'm using an earlier release of this project (2.5.1), which doesn't have the dependency on Mypy
This commit introduced Mypy as a
wordfreq
dependency, but there doesn't appear to be any runtime functionality provided by this dependency. I use a newer version of Mypy in one of my projects, which causes the following error when I try to installwordfreq
:Since there's no need to include Mypy as a main dependency, could it be moved to the dev dependencies for this project?
In the meantime, I'm using an earlier release of this project (2.5.1), which doesn't have the dependency on Mypy
Thanks for maintaining wordfreq! 😄