From b722790bf6ade1c7d1d74c79c4f1928b6bddb84e Mon Sep 17 00:00:00 2001 From: Jacob Oursland Date: Mon, 18 Dec 2023 13:23:08 -0800 Subject: [PATCH] Conda: Use python 3.11.*, not 3.11 which is 3.11.0. --- conda/conda-env.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/conda/conda-env.yaml b/conda/conda-env.yaml index e564b8f043..1bd63b1952 100644 --- a/conda/conda-env.yaml +++ b/conda/conda-env.yaml @@ -3,6 +3,6 @@ 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==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.