build(deps): pin overrides!=7.6.0
Metadata
Current evaluation
Merged a dependency pin to exclude overrides version 7.6.0, which introduced a bug breaking Python plugin tests using the override decorator. The change was approved, passed CI, and was temporarily closed and reopened to resolve a readthedocs failure.
Suggested action: —
No scores available.
Issue body
- [x] Have you signed the [CLA](http://www.ubuntu.com/legal/contributors/)?
-----
`overrides` 7.6.0 introduced a bug: https://github.com/mkorpela/overrides/issues/121
A handful of python plugin tests are failing with:
```
FAILED tests/integration/plugins/test_python.py::test_python_plugin_no_system_interpreter[True] - TypeError: test_python_plugin_no_system_interpreter.<locals>.MyPythonPlugin._get_system_python_interpreter: No super class method found
```
due to how the tests override superclass functions:
```
class MyPythonPlugin(craft_parts.plugins.plugins.PythonPlugin):
@override
def _get_system_python_interpreter(self) -> Optional[str]:
return None
```
Our options are:
1. Merge this PR
2. Use the workaround described in the bug linked above
3. Wait for a fix in `overrides`
Evaluation history
| Date | Model | Scores | Action | Summary |
|---|---|---|---|---|
| qwen/qwen3.6-35b-a3b | — | — | Merged a dependency pin to exclude overrides version 7.6.0, which introduced a bug breaking Python plugin tests using the override decorator. The change was approved, passed CI, and was temporarily closed and reopened to resolve a readthedocs failure. | |
| qwen3.6-35b-a3b-mtp-q6 | — | — | Merged to pin the overrides dependency to exclude version 7.6.0, fixing test failures from a decorator bug. The author re-opened the PR to resolve a readthedocs CI failure before merging. |
Update history
No update history recorded yet.
Related issues
| Issue | Project | State | Summary | Similarity |
|---|---|---|---|---|
| #630 build(deps): pin overrides!=7.6.0 (#628) | craft-parts | merged | Merged a dependency update pinning overrides to exclude version 7.6.0. Approved by two reviewers with passing CI checks, the change was successfully integrated. | |
| #4031 requirements: pin setuptools<66 | snapcraft | merged | Merged pinning setuptools below 66. Version 66 enforces PEP 440, breaking unit tests. The fix adds a TODO for future resolution, passed CI, and received four approvals. |