2025-02-09 21:33:11 +01:00
|
|
|
from __future__ import annotations
|
|
|
|
|
2025-02-09 21:10:22 +01:00
|
|
|
import contextlib
|
|
|
|
import os
|
2025-02-09 21:40:02 +01:00
|
|
|
import sys
|
2025-02-09 21:46:04 +01:00
|
|
|
from collections.abc import Generator
|
|
|
|
from collections.abc import Sequence
|
2025-02-09 21:10:22 +01:00
|
|
|
|
2025-02-09 21:38:08 +01:00
|
|
|
from pre_commit import lang_base
|
2025-02-09 21:10:22 +01:00
|
|
|
from pre_commit.envcontext import envcontext
|
|
|
|
from pre_commit.envcontext import PatchesT
|
|
|
|
from pre_commit.envcontext import SubstitutionT
|
|
|
|
from pre_commit.envcontext import UNSET
|
|
|
|
from pre_commit.envcontext import Var
|
|
|
|
from pre_commit.prefix import Prefix
|
|
|
|
from pre_commit.util import cmd_output_b
|
|
|
|
|
|
|
|
ENVIRONMENT_DIR = 'conda'
|
2025-02-09 21:38:08 +01:00
|
|
|
get_default_version = lang_base.basic_get_default_version
|
|
|
|
health_check = lang_base.basic_health_check
|
|
|
|
run_hook = lang_base.basic_run_hook
|
2025-02-09 21:10:22 +01:00
|
|
|
|
|
|
|
|
|
|
|
def get_env_patch(env: str) -> PatchesT:
|
|
|
|
# On non-windows systems executable live in $CONDA_PREFIX/bin, on Windows
|
|
|
|
# they can be in $CONDA_PREFIX/bin, $CONDA_PREFIX/Library/bin,
|
|
|
|
# $CONDA_PREFIX/Scripts and $CONDA_PREFIX. Whereas the latter only
|
|
|
|
# seems to be used for python.exe.
|
|
|
|
path: SubstitutionT = (os.path.join(env, 'bin'), os.pathsep, Var('PATH'))
|
2025-02-09 21:40:02 +01:00
|
|
|
if sys.platform == 'win32': # pragma: win32 cover
|
2025-02-09 21:10:22 +01:00
|
|
|
path = (env, os.pathsep, *path)
|
|
|
|
path = (os.path.join(env, 'Scripts'), os.pathsep, *path)
|
|
|
|
path = (os.path.join(env, 'Library', 'bin'), os.pathsep, *path)
|
|
|
|
|
|
|
|
return (
|
|
|
|
('PYTHONHOME', UNSET),
|
|
|
|
('VIRTUAL_ENV', UNSET),
|
|
|
|
('CONDA_PREFIX', env),
|
|
|
|
('PATH', path),
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
@contextlib.contextmanager
|
2025-02-09 21:36:17 +01:00
|
|
|
def in_env(prefix: Prefix, version: str) -> Generator[None, None, None]:
|
2025-02-09 21:38:08 +01:00
|
|
|
envdir = lang_base.environment_dir(prefix, ENVIRONMENT_DIR, version)
|
2025-02-09 21:10:22 +01:00
|
|
|
with envcontext(get_env_patch(envdir)):
|
|
|
|
yield
|
|
|
|
|
|
|
|
|
2025-02-09 21:32:33 +01:00
|
|
|
def _conda_exe() -> str:
|
|
|
|
if os.environ.get('PRE_COMMIT_USE_MICROMAMBA'):
|
|
|
|
return 'micromamba'
|
|
|
|
elif os.environ.get('PRE_COMMIT_USE_MAMBA'):
|
|
|
|
return 'mamba'
|
|
|
|
else:
|
|
|
|
return 'conda'
|
|
|
|
|
|
|
|
|
2025-02-09 21:10:22 +01:00
|
|
|
def install_environment(
|
|
|
|
prefix: Prefix,
|
|
|
|
version: str,
|
|
|
|
additional_dependencies: Sequence[str],
|
|
|
|
) -> None:
|
2025-02-09 21:38:08 +01:00
|
|
|
lang_base.assert_version_default('conda', version)
|
2025-02-09 21:10:22 +01:00
|
|
|
|
2025-02-09 21:32:33 +01:00
|
|
|
conda_exe = _conda_exe()
|
|
|
|
|
2025-02-09 21:38:08 +01:00
|
|
|
env_dir = lang_base.environment_dir(prefix, ENVIRONMENT_DIR, version)
|
2025-02-09 21:36:17 +01:00
|
|
|
cmd_output_b(
|
|
|
|
conda_exe, 'env', 'create', '-p', env_dir, '--file',
|
|
|
|
'environment.yml', cwd=prefix.prefix_dir,
|
|
|
|
)
|
|
|
|
if additional_dependencies:
|
2025-02-09 21:10:22 +01:00
|
|
|
cmd_output_b(
|
2025-02-09 21:36:17 +01:00
|
|
|
conda_exe, 'install', '-p', env_dir, *additional_dependencies,
|
|
|
|
cwd=prefix.prefix_dir,
|
2025-02-09 21:10:22 +01:00
|
|
|
)
|