-
Notifications
You must be signed in to change notification settings - Fork 15
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
Add PyPy Support + tests #393
Conversation
Otherwise looks good but pypy3.7 is failing with mypy: install_deps> failing with pypy3.7
This is coming from the
The mypy 1.4.1 then has this in it's setup.py:
As far as I understand, the typed-ast is not supported in PyPy 3.7: This means that the CI pipelines (with mypy) cannot be setup with PyPy 3.7. The lowest version which wakepy can officially fully support (with all the CI pipelines tests) is PyPy 3.8, but PyPy 3.7 probably works as well, or at least the test suite did run correctly on I'm going to change the pipelines to run on PyPy 3.8 and PyPy 3.10 |
The pypy3.7 does not support typed-ast which is a requirement in the mypy version supporting Python 3.7
Tested on Windows 10 + PyPy 7.3.17 (Python 3.10.14) and it works as expected. |
Closes: #274
Note: It's likely that all versions of wakepy have been running well with PyPy. This is just the official rubber stamp as there's now also CI tests for PyPy.