-
-
Notifications
You must be signed in to change notification settings - Fork 2.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update FAQ to include MyPy not working on PyPy #8879
Conversation
I experienced a wild goose chase while experimenting with PyPy. It boiled down to typed_ast not compiling with PyPy. I hope others will find this information more quickly now.
would it be possible to remove typed_ast dependancy ? (for PyPy, when it will be python-3.8 compatible) |
@stonebig, typed_ast is already not required for Python >= 3.8, so there should hopefully be minimal changes needed to support pypy. I have been watching the PyPy development work and I plan on trying mypy on pypy once the needed changes are added. |
I asked because when I do on python-3.9 a pipdeptree -r -p typed-ast, mypy seems still to have typed-ast as a dependency... rechecking |
... hmm, maybe a pipdeptree bug |
yet, the METADATA file of
Would the specification "python <3.8" have been lost in the wheel transformation ? (or the METADATA format is outdated ?) |
The most recent release still unconditionally required typed-ast. The next release (expected next week) will have the version-conditional typed-ast requirement. |
so can we remove typed-ast as a dependancy for Python>=3.8 ? |
.... ha.... checking on a empty Python-3.8 .... seems it shall be good, sorry for not having checked before
|
I experienced a wild goose chase while experimenting with PyPy.
It boiled down to typed_ast not compiling with PyPy.
I hope others will find this information more quickly now.