Skip to content

Commit 1ee17af

Browse files
Avoid enforcing project-level required version for uv self (#10374)
## Summary Closes #10355.
1 parent 2ae0ed3 commit 1ee17af

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/uv/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ async fn run(mut cli: Cli) -> Result<ExitStatus> {
119119
Some(FilesystemOptions::from_file(config_file)?)
120120
} else if deprecated_isolated || cli.top_level.no_config {
121121
None
122-
} else if matches!(&*cli.command, Commands::Tool(_)) {
122+
} else if matches!(&*cli.command, Commands::Tool(_) | Commands::Self_(_)) {
123123
// For commands that operate at the user-level, ignore local configuration.
124124
FilesystemOptions::user()?.combine(FilesystemOptions::system()?)
125125
} else if let Ok(workspace) =

0 commit comments

Comments
 (0)