From e5d4f0e38eb3a0c867d5ef383db081285ffeeba1 Mon Sep 17 00:00:00 2001 From: Jacob Oursland Date: Sun, 24 Mar 2024 15:53:42 -0600 Subject: [PATCH] Conda: Unpin packages post miniforge upgrade. Miniforge has upgraded from 23.x.y to 24.x.y, permitting the unpinning of dependencies. Furthermore, these pinned packages cause build issues with the latest version of Miniforge. --- conda/conda-env.yaml | 5 ++--- conda/environment.devenv.yml | 2 +- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/conda/conda-env.yaml b/conda/conda-env.yaml index 1bd63b1952..85f441dae3 100644 --- a/conda/conda-env.yaml +++ b/conda/conda-env.yaml @@ -3,6 +3,5 @@ channels: - conda-forge dependencies: - conda-devenv -- mamba==1.4.9 # NOTE: Pin to highest version supported by the devenv -- python==3.11.* # dependencies. If a higher version is installed, a crash - # occurs during the downgrade process. +- mamba +- python==3.11.* diff --git a/conda/environment.devenv.yml b/conda/environment.devenv.yml index fa434281b4..a2504b69e6 100644 --- a/conda/environment.devenv.yml +++ b/conda/environment.devenv.yml @@ -73,7 +73,7 @@ dependencies: - graphviz - hdf5 - libcxx -- mamba==1.4.9 +- mamba - matplotlib - ninja - numpy