From 819317a9f14ebde9f9bbd46ec24b187c5d4f53f0 Mon Sep 17 00:00:00 2001 From: Bradley Dice Date: Fri, 4 Nov 2022 11:31:17 -0500 Subject: [PATCH] Swap conda-forge and nvidia channel priority. --- src/rapids_dependency_file_generator/constants.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rapids_dependency_file_generator/constants.py b/src/rapids_dependency_file_generator/constants.py index 5fd13205..73a2453c 100644 --- a/src/rapids_dependency_file_generator/constants.py +++ b/src/rapids_dependency_file_generator/constants.py @@ -14,10 +14,10 @@ def __str__(self): default_channels = [ "rapidsai", - "nvidia", "rapidsai-nightly", "dask/label/dev", "conda-forge", + "nvidia", ] default_conda_dir = "conda/environments"