From b2ca6c4271cab2aa6900aca70deaa3db23f8b944 Mon Sep 17 00:00:00 2001 From: Maksim Rakitin Date: Tue, 5 Feb 2019 16:38:27 -0500 Subject: [PATCH 1/2] CI: add the latest conda version 4.6.2 --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index ee1cc34..be2fb0c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,6 +12,7 @@ env: - PYTHON_VERSION=2.7 CONDA_VERSION=4.5.3 - PYTHON_VERSION=3.5 CONDA_VERSION=4.5.3 - PYTHON_VERSION=3.6 CONDA_VERSION=4.5.3 + - PYTHON_VERSION=3.6 CONDA_VERSION=4.6.2 install: - export CONDA_BASE=http://repo.continuum.io/miniconda/Miniconda3 From 3342b281dfc44d42087249f7c5242385cf0b7c9a Mon Sep 17 00:00:00 2001 From: Maksim Rakitin Date: Tue, 5 Feb 2019 16:49:06 -0500 Subject: [PATCH 2/2] FIX: fixing the issue with sorting the packages --- conda_execute/tmpenv.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conda_execute/tmpenv.py b/conda_execute/tmpenv.py index 9e4834f..3cbe41a 100644 --- a/conda_execute/tmpenv.py +++ b/conda_execute/tmpenv.py @@ -115,7 +115,7 @@ def create_env(spec, force_recreation=False, extra_channels=()): index = get_index(extra_channels) # Ditto re the quietness. r = Resolve(index) - full_list_of_packages = sorted(r.solve(list(spec))) + full_list_of_packages = r.solve(list(spec)) # Put out a newline. Conda's solve doesn't do it for us. log.info('\n')