From 2acf0974c310f6965dc20aa8e05280ed85fee5dd Mon Sep 17 00:00:00 2001 From: Min RK Date: Fri, 26 Apr 2019 16:17:22 +0200 Subject: [PATCH] miniconda is 4.6.14 --- docs/source/changelog.rst | 2 +- tests/conda/binder-dir/verify | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst index 71fa6db5..3049d7bf 100644 --- a/docs/source/changelog.rst +++ b/docs/source/changelog.rst @@ -13,7 +13,7 @@ New features :user:`davidanthoff` - Set JULIA_PROJECT globally, so that every julia instance starts with the julia environment activated in :pr:`612` by :user:`davidanthoff`. -- Update Miniconda version to 4.5.12 and Conda version to 4.6.14 in :pr:`637` by +- Update Miniconda version to 4.6.14 and Conda version to 4.6.14 in :pr:`637` by :user:`jhamman` - Install notebook into `notebook` env instead of `root`. Activate conda environments and shell integration via ENTRYPOINT diff --git a/tests/conda/binder-dir/verify b/tests/conda/binder-dir/verify index 64016158..2c3fc1e1 100755 --- a/tests/conda/binder-dir/verify +++ b/tests/conda/binder-dir/verify @@ -5,6 +5,6 @@ from subprocess import check_output assert sys.version_info[:2] == (3, 5), sys.version out = check_output(['conda', '--version']).decode('utf8').strip() -assert out == 'conda 4.5.11', out +assert out == 'conda 4.6.14', out import numpy