(prefix: Prefix, version: str)
| 34 | |
| 35 | @contextlib.contextmanager |
| 36 | def in_env(prefix: Prefix, version: str) -> Generator[None]: |
| 37 | envdir = lang_base.environment_dir(prefix, ENVIRONMENT_DIR, version) |
| 38 | with envcontext(get_env_patch(envdir)): |
| 39 | yield |
| 40 | |
| 41 | |
| 42 | def install_environment( |
no test coverage detected