(prefix: Prefix, version: str)
| 25 | |
| 26 | @contextlib.contextmanager |
| 27 | def in_env(prefix: Prefix, version: str) -> Generator[None]: |
| 28 | envdir = lang_base.environment_dir(prefix, ENVIRONMENT_DIR, version) |
| 29 | with envcontext(get_env_patch(envdir)): |
| 30 | yield |
| 31 | |
| 32 | |
| 33 | def install_environment( |
nothing calls this directly
no test coverage detected