Skip to content

Commit

Permalink
Pass command to generate the conda json file
Browse files Browse the repository at this point in the history
  • Loading branch information
dagardner-nv committed Nov 26, 2024
1 parent 047f2e5 commit 3210896
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion ci/release/download_deps.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 = { # <conda package nanme>: <upstream name>
"beautifulsoup4": "beautifulsoup",
Expand Down Expand Up @@ -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()]
Expand Down

0 comments on commit 3210896

Please sign in to comment.