File tree Expand file tree Collapse file tree 3 files changed +11
-6
lines changed
repo2docker/buildpacks/conda Expand file tree Collapse file tree 3 files changed +11
-6
lines changed Original file line number Diff line number Diff 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
1922API changes
2023-----------
Original file line number Diff line number Diff line change 2222# Docker image version can be different than conda version,
2323# since miniconda3 docker images seem to lag conda releases.
2424MINICONDA_DOCKER_VERSION = '4.5.12'
25- CONDA_VERSION = '4.6.9 '
25+ CONDA_VERSION = '4.6.14 '
2626
2727HERE = pathlib .Path (os .path .dirname (os .path .abspath (__file__ )))
2828
Original file line number Diff line number Diff line change 33set -ex
44
55cd $( 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
1212URL=" https://repo.continuum.io/miniconda/Miniconda3-${MINICONDA_VERSION} -Linux-x86_64.sh"
1313INSTALLER_PATH=/tmp/miniconda-installer.sh
@@ -39,7 +39,9 @@ conda config --system --set show_channel_urls true
3939echo ' 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
4446echo " installing notebook env:"
4547cat /tmp/environment.yml
You can’t perform that action at this time.
0 commit comments