mirror of
https://github.com/astral-sh/uv.git
synced 2025-08-04 19:08:04 +00:00
![]() ## Summary Closes #13253 ## Test Plan ```sh ❯ cat pyproject.toml | rg required required-version = ">=0.7.3, <0.8" ❯ cargo run -q --features self-update --manifest-path ~/uv/Cargo.toml add black error: Required uv version `>=0.7.3, <0.8` does not match the running version `0.7.2`. hint: Update `uv` by running `uv self update`. ❯ cat pyproject.toml | rg required required-version = ">=0.7.3" ❯ cargo run -q --features self-update --manifest-path ~/uv/Cargo.toml add black error: Required uv version `>=0.7.3` does not match the running version `0.7.2`. hint: Update `uv` by running `uv self update`. ❯ cat pyproject.toml | rg required required-version = "<0.7" ❯ cargo run -q --features self-update --manifest-path ~/uv/Cargo.toml add black error: Required uv version `<0.7` does not match the running version `0.7.2`. ❯ cat pyproject.toml | rg required required-version = ">=0.4,<0.7" ❯ cargo run -q --features self-update --manifest-path ~/uv/Cargo.toml add black error: Required uv version `>=0.4, <0.7` does not match the running version `0.7.2`. ``` --------- Co-authored-by: Charlie Marsh <charlie.r.marsh@gmail.com> |
||
---|---|---|
.. | ||
src | ||
Cargo.toml |