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
12 changes: 0 additions & 12 deletions crates/uv-cli/src/compat.rs
Original file line number Diff line number Diff line change
Expand Up @@ -133,12 +133,6 @@ impl CompatArgs for PipCompileCompatArgs {
));
}

if self.no_config {
warn_user!(
"pip-compile's `--no-config` has no effect (uv does not use a configuration file)"
);
}

if self.emit_options {
return Err(anyhow!(
"pip-compile's `--emit-options` is unsupported (uv never emits options)"
Expand Down Expand Up @@ -252,12 +246,6 @@ impl CompatArgs for PipSyncCompatArgs {
));
}

if self.no_config {
warn_user!(
"pip-sync's `--no-config` has no effect (uv does not use a configuration file)"
);
}

if self.pip_args.is_some() {
return Err(anyhow!(
"pip-sync's `--pip-args` is unsupported (try passing arguments to uv directly)"
Expand Down
Loading