diff --git a/crates/uv/src/lib.rs b/crates/uv/src/lib.rs index 7381b9772..ca854b0ad 100644 --- a/crates/uv/src/lib.rs +++ b/crates/uv/src/lib.rs @@ -119,7 +119,7 @@ async fn run(mut cli: Cli) -> Result { Some(FilesystemOptions::from_file(config_file)?) } else if deprecated_isolated || cli.top_level.no_config { None - } else if matches!(&*cli.command, Commands::Tool(_)) { + } else if matches!(&*cli.command, Commands::Tool(_) | Commands::Self_(_)) { // For commands that operate at the user-level, ignore local configuration. FilesystemOptions::user()?.combine(FilesystemOptions::system()?) } else if let Ok(workspace) =