mitigate issues with pip-tools 7.5.0 with dependency limit #12947
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Motivation
A few days ago,
pip-tools==7.5.0
has been released.With our weekly ASF update action, we are now facing an issue which was introduced by this version: jazzband/pip-tools#2215
Immediately on the first call of
pip-compile
in this workflow the execution fails with the following trace:This PR mitigates this issue by avoiding this release / introducing dependency limits when installing
pip-tools
.This PR should be reverted once the issue has been resolved by the
pip-tools
team.Changes
pip-tools
to less than7.5.0
(i.e. install7.4.1
instead of7.5.0
to avoidpip-compile
fails to parse apyproject.toml
with self-references when supplied as a relative path jazzband/pip-tools#2215.Testing