-
-
Notifications
You must be signed in to change notification settings - Fork 402
Closed
Description
I noticed the tests in CI started failing on pypy builds because the the requirement-tests.txt specifies mypy:
Line 3 in a4ec27e
| mypy |
Which transitively requires librt. But librt cannot be installed for pypy. See mypyc/librt#16
The recommended fix (per librt maintainers) is to not use mypy on pypy.
mypy ; platform_python_implementation != 'PyPy'"Or just don't require mypy if no unit tests require it installed.
Or if the unit tests do require mypy installed, simply skip running tests on pypy wheels in CI (using cibuildwheel test-skip settings in project.toml):
Line 18 in a4ec27e
| test-skip = "*-*linux_ppc64le" |
would (I think) get turn into
test-skip = "*-*linux_ppc64le pp3*"Metadata
Metadata
Assignees
Labels
No labels