From ec61923985f3de1adbe89d5c441695e4677378f6 Mon Sep 17 00:00:00 2001 From: Patrick Avery Date: Wed, 6 Mar 2024 16:12:37 -0600 Subject: [PATCH] Install python3.11 in the base conda environment python3.12 is causing some issues... Signed-off-by: Patrick Avery --- .github/workflows/container_build.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/container_build.sh b/.github/workflows/container_build.sh index acecc5f92..f17b74dbe 100755 --- a/.github/workflows/container_build.sh +++ b/.github/workflows/container_build.sh @@ -16,6 +16,9 @@ wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh chmod a+x Miniconda3-latest-Linux-x86_64.sh ./Miniconda3-latest-Linux-x86_64.sh -b +# The base needs to have the same python version (3.11, right now) +${HOME}/miniconda3/bin/conda install python=3.11 -y + # Set up the hexrd channel ${HOME}/miniconda3/bin/conda create --override-channels -c conda-forge -y -n hexrd python=3.11 ${HOME}/miniconda3/bin/activate hexrd