In pyproject.toml, a developer's local macOS user path was committed under [tool.uv.sources]:
Line 41 in 6a11a56
xclif = { path = "/Users/bryanhu/Developer/current/XClif/xclif" }
Following the readme to install from source now breaks like this:
$ uv tool install .
error: Distribution not found at: file:///Users/bryanhu/Developer/current/XClif/xclif
Removing the offending block from pyproject.toml and running uv lock allows UV to resolve xclif against PyPI, then install works as expected.
In pyproject.toml, a developer's local macOS user path was committed under `[tool.uv.sources]`:
https://codeberg.org/thatxliner/codeberg-cli/src/commit/6a11a56031cb4005847cc076c483c7be8834093f/pyproject.toml#L41
Following the readme to install from source now breaks like this:
```
$ uv tool install .
error: Distribution not found at: file:///Users/bryanhu/Developer/current/XClif/xclif
```
Removing the offending block from pyproject.toml and running `uv lock` allows UV to resolve xclif against PyPI, then install works as expected.