-
Notifications
You must be signed in to change notification settings - Fork 150
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
Improve compatibility with future versions of setuptools
#638
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #638 +/- ##
==========================================
+ Coverage 71.11% 71.18% +0.06%
==========================================
Files 14 14
Lines 1087 1093 +6
==========================================
+ Hits 773 778 +5
- Misses 314 315 +1 ☔ View full report in Codecov by Sentry. |
Would it make sense to still produce the warning though, to hopefully encourage packages to update to using setuptools directly? |
Yeah, 100%. It is better if packages are compelled to handle the deprecation explicitly. |
Would you mind adding a changelog note? |
Ahh, I thought this was only warning if it was using the internal version. I now see the warning is in the correct spot. 👍 |
Thank you @agronholm. I added some release notes, please feel free to modify the text to your liking. A related comment: After this change, we may be templated to just import the setuptools version elsewhere in While that is a valid possibility to consider, it may involve coordinating integration tests with Just as an example: in pypa/setuptools#4701, as a preparation for implementing PEP 685, we are proposing to simply preserve the contents of This makes sense in the setuptools code-base because we know that the installed version of setuptools will always produce the acceptable metadata. However, the So there are 2 options, preserve the implementation of |
I have a half-done local branch where I'm removing the setuptools dependency for egg conversion. |
Perfect, thank you very much. |
While working on the implementation of PEP 643, I realised that if we implement a new version of metadata in
setuptools
, once the current version ofwheel.bdist_wheel
runs in deprecated scenarios, it will produce invalid metadata.We can also expand this reasoning to other fixes and/or PEP implementations. A recent example was the fix for pypa/setuptools#1825, proposed in pypa/setuptools#4647, which caused some trouble and required the implementation of a very intrusive workaround: pypa/setuptools#4684 (comment).
I was thinking if there was any way we could address that while maintaining as much as possible a backwards compatible API (in both setuptools and wheel) so that we minimise the amount of disruption in the community while going forward1. So I came up with the idea for this PR.
Please let me know your thoughts on the subject.
Footnotes
Unfortunately there are many packages in the ecosystem that are widespread but have low maintenance. It is possible that a small amount of those will never address the deprecation warning... ↩