one last(?) fix

This commit is contained in:
KTibow 2025-10-24 19:16:01 -07:00
parent 9903119dd8
commit c5ddc622ca
1 changed files with 5 additions and 2 deletions

View File

@ -630,8 +630,11 @@ mod test {
error: invalid command 'bdist_wheel'
hint: This error likely indicates that `pygraphviz-1.11` depends on `wheel`, but doesn't declare it as a build dependency. If `pygraphviz-1.11` is a first-party package, consider adding `wheel` to its `build-system.requires`. Otherwise, either add it to your `pyproject.toml` under:
hint: This error likely indicates that `pygraphviz-1.11` depends on `wheel`, but doesn't declare it as a build dependency. You likely should tweak your `pyproject.toml`:
# if pygraphviz-1.11 is first-party
[build-system]
requires = ["wheel"]
# otherwise
[tool.uv.extra-build-dependencies]
"pygraphviz-1.11" = ["wheel"]