Remove --isolated usages from the uv python API (#5468)

This commit is contained in:
Charlie Marsh 2024-07-30 13:52:53 -04:00 committed by GitHub
parent 5830a532ef
commit f7494f24cf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 17 additions and 15 deletions

View file

@ -2485,6 +2485,11 @@ pub struct PythonPinArgs {
#[arg(long, overrides_with("no_resolved"), hide = true)]
pub no_resolved: bool,
/// Avoid validating the Python pin against the workspace in the current directory or any parent
/// directory.
#[arg(long)]
pub no_workspace: bool,
}
#[derive(Args)]