From 74ddcea110ef96862c7476cb7bf31ce2887e8413 Mon Sep 17 00:00:00 2001 From: Benjamin Bertrand <benjamin.bertrand@esss.se> Date: Fri, 17 May 2019 14:03:54 +0200 Subject: [PATCH] Update default conda version to 4.6.14 --- README.md | 2 +- defaults/main.yml | 2 +- molecule/default/tests/test_conda.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 1405032..bdea0d0 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ Ansible role to install conda on CentOS. ## Role Variables ```yaml -conda_version: 4.6.12 +conda_version: 4.6.14 conda_channel_alias: https://artifactory.esss.lu.se/artifactory/api/conda # List of conda channels to use conda_channels: diff --git a/defaults/main.yml b/defaults/main.yml index be7d350..72fb6fc 100644 --- a/defaults/main.yml +++ b/defaults/main.yml @@ -1,5 +1,5 @@ --- -conda_version: 4.6.12 +conda_version: 4.6.14 conda_channel_alias: https://artifactory.esss.lu.se/artifactory/api/conda # List of conda channels to use conda_channels: diff --git a/molecule/default/tests/test_conda.py b/molecule/default/tests/test_conda.py index 5383170..50a185b 100644 --- a/molecule/default/tests/test_conda.py +++ b/molecule/default/tests/test_conda.py @@ -8,7 +8,7 @@ testinfra_hosts = testinfra.utils.ansible_runner.AnsibleRunner( def test_conda_version(host): cmd = host.run('/opt/conda/bin/conda --version 2>&1') assert cmd.rc == 0 - assert cmd.stdout.strip() == 'conda 4.6.12' + assert cmd.stdout.strip() == 'conda 4.6.14' def test_conda_path(host): -- GitLab