Remove reliance on pkg_resources for entry points#3087
Conversation
…ies typing_extensions and zipp.
… validate and restore validation of entry points that don't match the pattern.
|
That's weird. Tests are timing out on PyPy (only). Curiously, if I disable the pytest-xdist plugin, the tests run. So it seems xdist is implicated. |
|
I do see that at least one test passed on pypy for SETUPTOOLS_USE_DISTUTILS=local. I don't get it - there's next to nothing in this change that's related to distutils or pypy. |
|
An earlier test is passing or nearly passing. Maybe the issue is transient. |
|
Issue was apparently transient. Seems tests are getting flakier and flakier. Not good considering it’s now taking hours to work through jobs. |
Yes, I noticed in previous PRs that the combination Windows + PyPy 3.7 is specially flaky. In most of the cases I observed, the error happens on These are just a few of the examples I found recently: |
Co-authored-by: Sviatoslav Sydorenko <wk@sydorenko.org.ua>
As discussed in pypa#3087, `test_build_meta` seems to be flaky specially for the combination of Windows + PyPy. This is a proposed workaround for such scenarios.
Ref #3085