Skip to content

Commit 109793b

Browse files
committed
conda 4.6.14
1 parent 1f7d91a commit 109793b

File tree

3 files changed

+11
-6
lines changed

3 files changed

+11
-6
lines changed

docs/source/changelog.rst

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,11 @@ New features
1313
:user:`davidanthoff`
1414
- Set JULIA_PROJECT globally, so that every julia instance starts with the
1515
julia environment activated in :pr:`612` by :user:`davidanthoff`.
16-
- Update Miniconda version to 4.5.12 and Conda version to 4.6.9 in :pr:`637` by
16+
- Update Miniconda version to 4.5.12 and Conda version to 4.6.14 in :pr:`637` by
1717
:user:`jhamman`
18+
- Install notebook into `notebook` env instead of `root`.
19+
Activate conda environments and shell integration via ENTRYPOINT
20+
in :pr:`651` by :user:`minrk`
1821

1922
API changes
2023
-----------

repo2docker/buildpacks/conda/freeze.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
# Docker image version can be different than conda version,
2323
# since miniconda3 docker images seem to lag conda releases.
2424
MINICONDA_DOCKER_VERSION = '4.5.12'
25-
CONDA_VERSION = '4.6.9'
25+
CONDA_VERSION = '4.6.14'
2626

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

repo2docker/buildpacks/conda/install-miniconda.bash

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

55
cd $(dirname $0)
6-
MINICONDA_VERSION=4.5.12
7-
CONDA_VERSION=4.6.9
6+
MINICONDA_VERSION=4.6.14
7+
CONDA_VERSION=4.6.14
88
# Only MD5 checksums are available for miniconda
99
# Can be obtained from https://repo.continuum.io/miniconda/
10-
MD5SUM="866ae9dff53ad0874e1d1a60b1ad1ef8"
10+
MD5SUM="718259965f234088d785cad1fbd7de03"
1111

1212
URL="https://repo.continuum.io/miniconda/Miniconda3-${MINICONDA_VERSION}-Linux-x86_64.sh"
1313
INSTALLER_PATH=/tmp/miniconda-installer.sh
@@ -39,7 +39,9 @@ conda config --system --set show_channel_urls true
3939
echo 'update_dependencies: false' >> ${CONDA_DIR}/.condarc
4040

4141
# install conda itself
42-
conda install -yq conda==${CONDA_VERSION}
42+
if [[ "${CONDA_VERSION}" != "${MINICONDA_VERSION}" ]]; then
43+
conda install -yq conda==${CONDA_VERSION}
44+
fi
4345

4446
echo "installing notebook env:"
4547
cat /tmp/environment.yml

0 commit comments

Comments
 (0)