Skip to content

Commit

Permalink
Merge pull request #172 from wtsi-npg/devel
Browse files Browse the repository at this point in the history
Pull from devel to master to create release 52.2.6
  • Loading branch information
jmtcsngr authored Dec 11, 2024
2 parents 9e7ac6e + da06db4 commit b9e1fde
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
LIST OF CHANGES

release 52.2.6 (2024-12-11)
- Fix URL to use Miniforge rather than Mambaforge

release 52.2.5 (2024-11-29)
- replace miniconda with miniforge for CI

Expand Down
8 changes: 4 additions & 4 deletions scripts/install_miniforge.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@

set -ex

MINIFORGE_VERSION="24.9.0-0"
MINIFORGE_SHA256="77fb505f6266ffa1b5d59604cf6ba25948627e908928cbff148813957b1c28af"
MINIFORGE_VERSION="24.9.2-0"
MINIFORGE_SHA256="ca8c544254c40ae5192eb7db4e133ff4eb9f942a1fec737dba8205ac3f626322"

CONDA_HOME=${CONDA_HOME:-"$HOME/conda"}
CONDA_HOME=${CONDA_HOME:="$HOME/conda"}
export CONDA_HOME

CONDARC="$HOME/.condarc"
Expand All @@ -27,7 +27,7 @@ channels:
- conda-forge
EOF

curl -sSL "https://github.com/conda-forge/miniforge/releases/download/${MINIFORGE_VERSION}/Mambaforge-${MINIFORGE_VERSION}-Linux-x86_64.sh" -o ./miniforge.sh
curl -sSL "https://github.com/conda-forge/miniforge/releases/download/${MINIFORGE_VERSION}/Miniforge3-${MINIFORGE_VERSION}-Linux-x86_64.sh" -o ./miniforge.sh
sha256sum ./miniforge.sh | grep "$MINIFORGE_SHA256"
/bin/bash ./miniforge.sh -b -p "$CONDA_HOME"
rm ./miniforge.sh

0 comments on commit b9e1fde

Please sign in to comment.