mirror of
https://github.com/astral-sh/uv.git
synced 2025-08-04 19:08:04 +00:00
Simplify managed Python flags (#12246)
Currently, for users to specify at the command line whether to use uv-managed or system Python interpreters, they use the `--python-preference` parameter, which takes four possible values. This is more complex than necessary since the normal case is to either say "only managed" or "not managed". This PR hides the old `--python-preference` parameter from help and documentation and adds two new flags: `--managed-python` and `--no-managed-python` to capture the "only managed" and "not managed" cases. I have successfully tested this locally but currently cannot add snapshot tests because of problems with distinguishing managed vs. system interpreters in CI (and non-determinism when run on different developers' machines). The `--python-preference` test in `tool-install.rs` is currently ignored for this reason. See #5144 and #7473. --------- Co-authored-by: Zanie Blue <contact@zanie.dev>
This commit is contained in:
parent
e9d2b6ecea
commit
f66ce58a09
8 changed files with 569 additions and 716 deletions
|
@ -116,8 +116,8 @@ command invocation. See the
|
|||
[Python discovery](../concepts/python-versions.md#discovery-of-python-versions) documentation for
|
||||
details.
|
||||
|
||||
To force uv to use the system Python, provide the `--python-preference only-system` option. See the
|
||||
[Python version preference](../concepts/python-versions.md#adjusting-python-version-preferences)
|
||||
To force uv to use the system Python, provide the `--no-managed-python` flag. See the
|
||||
[Python version preference](../concepts/python-versions.md#requiring-or-disabling-managed-python-versions)
|
||||
documentation for more details.
|
||||
|
||||
## Next steps
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue