You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
List all existing tool references on rye toolchain remove (#1346)
Using `rye toolchain remove` now lists all tools that use a specific
toolchain.
This eliminates the Whac-a-Mole game of reiterating through the `rye
toolchain remove blabla` command in order to actually remove it.
## Example Usage
```bash
$ rye install black --quiet --python 3.11.7
$ rye toolchain remove 3.11.7
error: toolchain [email protected] is still in use by tool black
$ rye install ruff --quiet --python 3.11.7
$ rye toolchain remove 3.11.7
error: toolchain [email protected] is still in use by tools: black, ruff
```
_(Side note: Rust isn't my main d2d language, feel free to comment on
coding style and unidiomatic code)_
0 commit comments