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