Skip to content

Commit

Permalink
Merge pull request #391 from yuvipanda/conda-bump
Browse files Browse the repository at this point in the history
Bump conda version to 4.5.11
  • Loading branch information
minrk committed Sep 7, 2018
2 parents 8195bbc + 48350ea commit a381fc8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion repo2docker/buildpacks/conda/freeze.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
from ruamel.yaml import YAML


MINICONDA_VERSION = '4.5.4'
MINICONDA_VERSION = '4.5.11'

HERE = pathlib.Path(os.path.dirname(os.path.abspath(__file__)))

Expand Down
6 changes: 3 additions & 3 deletions repo2docker/buildpacks/conda/install-miniconda.bash
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
set -ex

cd $(dirname $0)
MINICONDA_VERSION=4.5.4
CONDA_VERSION=4.5.8
MINICONDA_VERSION=4.5.11
CONDA_VERSION=4.5.11
URL="https://repo.continuum.io/miniconda/Miniconda3-${MINICONDA_VERSION}-Linux-x86_64.sh"
INSTALLER_PATH=/tmp/miniconda-installer.sh

Expand All @@ -13,7 +13,7 @@ chmod +x ${INSTALLER_PATH}

# Only MD5 checksums are available for miniconda
# Can be obtained from https://repo.continuum.io/miniconda/
MD5SUM="a946ea1d0c4a642ddf0c3a26a18bb16d"
MD5SUM="e1045ee415162f944b6aebfe560b8fee"

if ! echo "${MD5SUM} ${INSTALLER_PATH}" | md5sum --quiet -c -; then
echo "md5sum mismatch for ${INSTALLER_PATH}, exiting!"
Expand Down

0 comments on commit a381fc8

Please sign in to comment.