From bcbfae0e53446a78a64559bb2afb9cf370d87177 Mon Sep 17 00:00:00 2001 From: Zanie Blue Date: Mon, 16 Sep 2024 15:21:43 -0500 Subject: [PATCH] Include the parent interpreter in Python discovery when `--system` is used --- crates/uv-python/src/discovery.rs | 35 ++++++++++++++++++------------- 1 file changed, 21 insertions(+), 14 deletions(-) diff --git a/crates/uv-python/src/discovery.rs b/crates/uv-python/src/discovery.rs index 273abfa3d4a8..9715f0decb15 100644 --- a/crates/uv-python/src/discovery.rs +++ b/crates/uv-python/src/discovery.rs @@ -211,7 +211,6 @@ pub enum Error { /// /// The following sources are supported: /// -/// - Spawning interpreter (via `UV_INTERNAL__PARENT_INTERPRETER`) /// - Active virtual environment (via `VIRTUAL_ENV`) /// - Active conda environment (via `CONDA_PREFIX`) /// - Discovered virtual environment (e.g. `.venv` in a parent directory) @@ -219,13 +218,6 @@ pub enum Error { /// Notably, "system" environments are excluded. See [`python_executables_from_installed`]. fn python_executables_from_environments<'a>( ) -> impl Iterator> + 'a { - let from_parent_interpreter = std::iter::once_with(|| { - std::env::var_os("UV_INTERNAL__PARENT_INTERPRETER") - .into_iter() - .map(|path| Ok((PythonSource::ParentInterpreter, PathBuf::from(path)))) - }) - .flatten(); - let from_virtual_environment = std::iter::once_with(|| { virtualenv_from_env() .into_iter() @@ -253,8 +245,7 @@ fn python_executables_from_environments<'a>( }) .flatten_ok(); - from_parent_interpreter - .chain(from_virtual_environment) + from_virtual_environment .chain(from_conda_environment) .chain(from_discovered_environment) } @@ -383,15 +374,31 @@ fn python_executables<'a>( environments: EnvironmentPreference, preference: PythonPreference, ) -> Box> + 'a> { + // Always read from `UV_INTERNAL__PARENT_INTERPRETER` — it could be a system interpreter + let from_parent_interpreter = std::iter::once_with(|| { + std::env::var_os("UV_INTERNAL__PARENT_INTERPRETER") + .into_iter() + .map(|path| Ok((PythonSource::ParentInterpreter, PathBuf::from(path)))) + }) + .flatten(); + let from_environments = python_executables_from_environments(); let from_installed = python_executables_from_installed(version, implementation, preference); + // Limit the search to the relevant environment preference; we later validate that they match + // the preference but queries are expensive and we query less interpreters this way. match environments { - EnvironmentPreference::OnlyVirtual => Box::new(from_environments), - EnvironmentPreference::ExplicitSystem | EnvironmentPreference::Any => { - Box::new(from_environments.chain(from_installed)) + EnvironmentPreference::OnlyVirtual => { + Box::new(from_parent_interpreter.chain(from_environments)) + } + EnvironmentPreference::ExplicitSystem | EnvironmentPreference::Any => Box::new( + from_parent_interpreter + .chain(from_environments) + .chain(from_installed), + ), + EnvironmentPreference::OnlySystem => { + Box::new(from_parent_interpreter.chain(from_installed)) } - EnvironmentPreference::OnlySystem => Box::new(from_installed), } }