-
Notifications
You must be signed in to change notification settings - Fork 193
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
setuptools 60+ breaks 3 distutils tests #1981
Comments
Looking through the logs, I am more confident this is actually caused by pypa/setuptools#3143 -- the fact that the testing packages are installed as eggs break some assumptions of the tests. |
I am also seeing failing tests on a weekly cron job to test pythran HEAD + PyPy HEAD. Last night's run started failing the |
Use correct executable when running import tests. Should fix #1981
I haven't tested it, but I don't think that change makes any difference. |
Use correct executable when running import tests. Use pip install instead of setup.py install to test install. Should fix #1981
Use correct executable when running import tests. Use pip install instead of setup.py install to test install. Should fix #1981
Use correct executable when running import tests. Use pip install instead of setup.py install to test install. Should fix #1981
When we updated setuptools to 60+ in Fedora, it broke various packages. Setuptools now hijacks the distutils module and replaces it with its own. As such, it does some inconsistent things, such as pypa/setuptools#3143
Either way, I observe that 3 pythran tests consistently fail unless I set
SETUPTOOLS_USE_DISTUTILS=stdlib
(which disables this setuptools feature).The text was updated successfully, but these errors were encountered: