Remove base-prefix and friends from pyvenv.cfg (#2120)

## Summary

It looks like these have been included since the very first gourgeist
commit, but `virtualenv` and `venv` don't include them, and they only
add complexity AFAICT.
This commit is contained in:
Charlie Marsh
2024-03-01 16:17:30 -05:00
committed by GitHub
parent 6f54aacfea
commit 0233a5771d
-12
View File
@@ -246,18 +246,6 @@ pub fn create_bare_venv(
"false".to_string()
},
),
(
"base-prefix".to_string(),
interpreter.base_prefix().to_string_lossy().to_string(),
),
(
"base-exec-prefix".to_string(),
interpreter.base_exec_prefix().to_string_lossy().to_string(),
),
(
"base-executable".to_string(),
base_python.to_string_lossy().to_string(),
),
]
.into_iter()
.chain(extra_cfg)