Skip to content

Commit a381fc8

Browse files
authored
Merge pull request #391 from yuvipanda/conda-bump
Bump conda version to 4.5.11
2 parents 8195bbc + 48350ea commit a381fc8

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

repo2docker/buildpacks/conda/freeze.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
from ruamel.yaml import YAML
2020

2121

22-
MINICONDA_VERSION = '4.5.4'
22+
MINICONDA_VERSION = '4.5.11'
2323

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

repo2docker/buildpacks/conda/install-miniconda.bash

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
set -ex
44

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

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

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

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

0 commit comments

Comments
 (0)