miniconda is 4.6.14

pull/651/head
Min RK 2019-04-26 16:17:22 +02:00
rodzic 186e1bbc5d
commit 2acf0974c3
2 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -13,7 +13,7 @@ New features
:user:`davidanthoff` :user:`davidanthoff`
- Set JULIA_PROJECT globally, so that every julia instance starts with the - Set JULIA_PROJECT globally, so that every julia instance starts with the
julia environment activated in :pr:`612` by :user:`davidanthoff`. 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` :user:`jhamman`
- Install notebook into `notebook` env instead of `root`. - Install notebook into `notebook` env instead of `root`.
Activate conda environments and shell integration via ENTRYPOINT Activate conda environments and shell integration via ENTRYPOINT

Wyświetl plik

@ -5,6 +5,6 @@ from subprocess import check_output
assert sys.version_info[:2] == (3, 5), sys.version assert sys.version_info[:2] == (3, 5), sys.version
out = check_output(['conda', '--version']).decode('utf8').strip() out = check_output(['conda', '--version']).decode('utf8').strip()
assert out == 'conda 4.5.11', out assert out == 'conda 4.6.14', out
import numpy import numpy