-
Notifications
You must be signed in to change notification settings - Fork 2.3k
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
site: use importlib instead of adhoc file searches #3900
Conversation
It seems that the CI errors on Cirrus are due to these changes. Could you take a look? |
1de8de7
to
d4c9263
Compare
2433f5a
to
c588f6d
Compare
This change replaces various cases in which installed distribution and file look-ups used path searches with importlib.metadata backed look-ups. This fixes issues with `dist-info` lookup for PEP610 implementation as well as `.pth` file look-up and `dist-info` removal.
c588f6d
to
b66cd8e
Compare
@sdispater this should be good now. Instead of trying to make the previous fix work on freebsd, I ended up fixing the underlying issue. This should be good to review now. |
Hi, is this fix included in the latest version of poetry (1.1.13)? I'm still running into the issue in #2918. |
Same here, running into the issue! @lkev found something? |
This pull request has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
This change replaces various cases in which installed distribution and
file look-ups used path searches with importlib.metadata backed
look-ups.
This fixes issues with
dist-info
lookup for PEP610 implementation aswell as
.pth
file look-up anddist-info
removal.Resolves: #2918
Resolves: #3289
Resolves: #2855