From f10b8115e49125e28a2147f1288963a080448563 Mon Sep 17 00:00:00 2001 From: Ryan Clary <9618975+mrclary@users.noreply.github.com> Date: Tue, 3 Sep 2024 09:54:42 -0700 Subject: [PATCH] Change channel order because 6.0.0rc2 also satisfies specification "6.0.0" in the conda solve. --- installers-conda/build_installers.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/installers-conda/build_installers.py b/installers-conda/build_installers.py index f3344b66d42..e6b359fe5a8 100644 --- a/installers-conda/build_installers.py +++ b/installers-conda/build_installers.py @@ -186,10 +186,10 @@ def _create_conda_lock(env_type='base'): definitions = { "channels": [ - CONDA_BLD_PATH, + "conda-forge", "conda-forge/label/spyder_dev", "conda-forge/label/spyder_kernels_rc", - "conda-forge" + CONDA_BLD_PATH, ], "dependencies": [k + v for k, v in specs.items()], "platforms": [TARGET_PLATFORM]