-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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 warnings about bundled dependencies incompatibilities. #3296
Conversation
I am also (ab)using this PR to add a note in the changelog about |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you for this! :-)
setuptools/_importlib.py
Outdated
msg = ( | ||
"`importlib_metadata` version is incompatible with `setuptools`.\n" | ||
"This problem is likely to be solved by installing an updated version of " | ||
"`importlib_metadata`." |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think the canonical package name is importlib-metadata
, since that's what's on PyPI:
https://pypi.org/project/importlib-metadata/
Since end users will be needing to look for the requirement, rather than using the import - would it be best if the warning message used importlib-metadata
instead of importlib_metadata
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you very much for the review @edmorley.
I agree with you about importlib-metadata
.
@edmorley, I will leave the PR open just for a little while to see if the other maintainers of |
Summary of changes
importlib_metadata
Closes #3292, #3293
Pull Request Checklist
changelog.d/
.(See documentation for details)