(prefix: Prefix, version: str)
| 56 | |
| 57 | @contextlib.contextmanager |
| 58 | def in_env(prefix: Prefix, version: str) -> Generator[None]: |
| 59 | envdir = lang_base.environment_dir(prefix, ENVIRONMENT_DIR, version) |
| 60 | with envcontext(get_env_patch(envdir, version)): |
| 61 | yield |
| 62 | |
| 63 | |
| 64 | def install_environment( |
no test coverage detected