-
Notifications
You must be signed in to change notification settings - Fork 0
Set upper bounds for setuptools and wheel-filename #2
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,7 +1,7 @@ | ||
| devpi-plumber>=0.2.14 | ||
| setuptools | ||
| setuptools<82 # setuptools 82 drops pkg_resources | ||
| wheel | ||
| wheel-filename | ||
| wheel-filename<2 # wheel-filename 2 breaks imports of InvalidFilenameError, parse_wheel_filename | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Pinning |
||
| wheel-inspect>=1.6.0 | ||
| pip>=1.5.3 | ||
| junit-xml>=1.9 # First version to support to_xml_report_file | ||
|
|
||
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.
Pinning
setuptoolsis a good immediate fix to prevent breakage frompkg_resourcesbeing removed. However,pkg_resourcesis deprecated. For a more robust long-term solution, you should consider migrating the code indevpi_builder/requirements.pyto use modern alternatives like thepackaginglibrary (which is already a dependency) for name and version handling. This would remove the runtime dependency onsetuptoolsand make the project more future-proof.