diff --git a/ci/release/download_deps.py b/ci/release/download_deps.py index 169da33d3..674b0e74f 100755 --- a/ci/release/download_deps.py +++ b/ci/release/download_deps.py @@ -39,6 +39,8 @@ # pylint: enable=wrong-import-position +CONDA_JSON_CMD = "./docker/run_container_release.sh conda list --json > .tmp/container_pkgs.json" + # In some cases multiple packages are derived from a single upstream repo, please keep sorted PACKAGE_ALIASES = { # : "beautifulsoup4": "beautifulsoup", @@ -161,7 +163,8 @@ def main(): - args = parse_args(default_conda_yaml=os.path.join(PROJ_ROOT, + args = parse_args(conda_json_cmd=CONDA_JSON_CMD, + default_conda_yaml=os.path.join(PROJ_ROOT, "conda/environments/runtime_cuda-125_arch-x86_64.yaml"), default_conda_json=os.path.join(PROJ_ROOT, ".tmp/container_pkgs.json")) log_level = logging._nameToLevel[args.log_level.upper()]