Bug 2417962
| Summary: | python-fastrlock fails to build with pip 25.3 | ||
|---|---|---|---|
| Product: | [Fedora] Fedora | Reporter: | Miro Hrončok <mhroncok> |
| Component: | python-fastrlock | Assignee: | Tom.Rix |
| Status: | POST --- | QA Contact: | |
| Severity: | unspecified | Docs Contact: | |
| Priority: | unspecified | ||
| Version: | rawhide | CC: | Tom.Rix |
| Target Milestone: | --- | ||
| Target Release: | --- | ||
| Hardware: | Unspecified | ||
| OS: | Unspecified | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | --- | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | Type: | Bug | |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
| Embargoed: | |||
| Bug Depends On: | |||
| Bug Blocks: | 2384424, 2406299 | ||
|
Description
Miro Hrončok
2025-12-01 09:51:35 UTC
In this package, the reason for the failure is a tad weird. tox calls:
commands_pre =
python -m pip install pytest -r requirements.txt
python setup.py build_ext -i
python -m pip install .
And the final installation fails here. While PIP_NO_BUILD_ISOLATION=0 might make this go away, a proper fix is not to ever do this. I tried at https://github.com/scoder/fastrlock/pull/22 however the fact that the tests are a subpackage of fastrlock makes this a complicated case.
Anyway, this fixes it: https://src.fedoraproject.org/rpms/python-fastrlock/pull-request/3
|