Skip to content

Commit

Permalink
Merge pull request #239 from jaimergp/update-miniforge
Browse files Browse the repository at this point in the history
  • Loading branch information
jakirkham authored Aug 21, 2023
2 parents 7147486 + 7709370 commit 428fb37
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions scripts/run_commands
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@ set -exo pipefail
export additional_channel=""

export miniforge_arch="$(uname -m)"
export miniforge_version="22.9.0-0"
export python_version="3.10" # should match the one provided in mambaforge
export condapkg="https://github.com/conda-forge/miniforge/releases/download/${miniforge_version}/Mambaforge-${miniforge_version}-Linux-${miniforge_arch}.sh"
export miniforge_version="23.3.1-0"
export python_version="3.10" # should match the one provided in miniforge
export condapkg="https://github.com/conda-forge/miniforge/releases/download/${miniforge_version}/Miniforge3-${miniforge_version}-Linux-${miniforge_arch}.sh"
if [ "$(uname -m)" = "x86_64" ]; then
export conda_chksum="7049f5ebdd6e2aee7611874599ab14445cd63070cdb63db2e00ae0b90d7c6132"
export conda_chksum="9be723d231609919fa3e3bb06f899a9a9c22e92e570bada8129a1bf50fee8d73"
elif [ "$(uname -m)" = "ppc64le" ]; then
export conda_chksum="a17530e0e981991db5f6875e949dc22554f2ed0dd2b1bbb40ce677c910a2dc51"
export conda_chksum="434b461d309110bfeb72198541a541985aa197e3b605de27978c15f31d1520ef"
elif [ "$(uname -m)" = "aarch64" ]; then
export conda_chksum="6076cfb0c2f88efa3e5e125dc54f3c0f8219cfe1ae9d9258a5abe42dbcf21a13"
export conda_chksum="b71277b8b40a6817d923fde0b858f56a4504f4e9b659d343dd8eae9d9473ab7f"
else
exit 1
fi
Expand Down Expand Up @@ -47,7 +47,7 @@ conda config --show-sources
# Update everything first
mamba update --yes --all

# Ensure conda build, deployment and docker tools ar present
# Ensure conda build, deployment and docker tools are present
mamba install --yes --quiet \
"python=$python_version" \
git \
Expand Down

0 comments on commit 428fb37

Please sign in to comment.