From d98d7202bbefa3e31ab39a11db39376f7b1bf9f3 Mon Sep 17 00:00:00 2001 From: Andre Anjos <andre.dos.anjos@gmail.com> Date: Mon, 26 Mar 2018 15:11:05 +0200 Subject: [PATCH] Revert "Be less picky with specific package versions" This reverts commit 56446d498f3dc5f24ff28074729395d09b5d0578. --- conda/conda-bootstrap.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/conda/conda-bootstrap.py b/conda/conda-bootstrap.py index 85e6e40..fb92d36 100755 --- a/conda/conda-bootstrap.py +++ b/conda/conda-bootstrap.py @@ -144,8 +144,6 @@ def conda_create(args, packages): specs = [] for k in packages: k = ' '.join(k.split()[:2]) #remove eventual build string - if not k.startswith('bob'): - k = k.split()[0] #get whatever is compatible for those if any(elem in k for elem in '><|'): specs.append(k.replace(' ', '')) else: specs.append(k.replace(' ', '=')) -- GitLab