Revert "fix: upgraded pip-tools to 7.5.2"#186
Conversation
There was a problem hiding this comment.
Pull request overview
Reverts the previously merged upgrade of pip-tools by pinning it back to the prior version used in this repository.
Changes:
- Downgrade
pip-toolsfrom7.5.2to7.3.0in the pip-tools requirements lockfile. - Update the dev requirements lockfile to match the reverted
pip-toolspin.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| requirements/pip-tools.txt | Reverts the pinned pip-tools version used for requirements compilation tooling. |
| requirements/dev.txt | Aligns dev dependency lockfile with the reverted pip-tools pin. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| packaging==23.2 | ||
| # via build | ||
| pip-tools==7.5.2 | ||
| pip-tools==7.3.0 |
There was a problem hiding this comment.
requirements/pip-tools.txt is generated by make upgrade (Makefile:40) from requirements/pip-tools.in, which currently specifies unpinned pip-tools. With pip-compile --upgrade, the next make upgrade will likely bump pip-tools back to the latest version and undo this revert. If the intent is to keep pip-tools on 7.3.0 for now, pin pip-tools==7.3.0 in requirements/pip-tools.in (or add a constraint) so regenerations are stable.
Reverts #185