We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 93a2c7c commit ec07503Copy full SHA for ec07503
crates/uv/src/commands/pip/operations.rs
@@ -551,7 +551,7 @@ pub(crate) fn report_target_environment(
551
env.root().user_display()
552
);
553
554
- let Ok(target) = env.root().canonicalize() else {
+ let Ok(target) = std::path::absolute(env.root()) else {
555
debug!("{}", message);
556
return Ok(());
557
};
@@ -571,7 +571,7 @@ pub(crate) fn report_target_environment(
571
}
572
573
// Do not report a default environment path
574
- if let Ok(default) = PathBuf::from(".venv").canonicalize() {
+ if let Ok(default) = std::path::absolute(PathBuf::from(".venv")) {
575
if target == default {
576
577
0 commit comments