Remove virtualenv setup from gourgeist (#339)

We now only support building bare environments.
This commit is contained in:
Charlie Marsh
2023-11-06 10:32:45 -08:00
committed by GitHub
parent b013ea9c93
commit a5e535f6fb
9 changed files with 4 additions and 298 deletions
+1 -1
View File
@@ -87,7 +87,7 @@ fn venv_impl(
.into_diagnostic()?;
// Create the virtual environment.
gourgeist::create_venv(path, &base_python, &interpreter_info, true)
gourgeist::create_venv(path, &base_python, &interpreter_info)
.map_err(VenvError::CreationError)?;
Ok(ExitStatus::Success)