Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions crates/uv/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1180,13 +1180,13 @@ async fn run(mut cli: Cli) -> Result<ExitStatus> {

if args.no_system {
warn_user_once!(
"The `--no-system` flag has no effect, a system Python interpreter is always used in `uv venv`"
"The `--no-system` flag has no effect, `uv venv` always ignores virtual environments when finding a Python interpreter; did you mean `--managed-python`?"
);
}

if args.system {
warn_user_once!(
"The `--system` flag has no effect, a system Python interpreter is always used in `uv venv`"
"The `--system` flag has no effect, `uv venv` always ignores virtual environments when finding a Python interpreter; did you mean `--no-managed-python`?"
);
}

Expand Down
Loading