From e7fb0619fa04d9933e19f2583833dd1c03790a03 Mon Sep 17 00:00:00 2001 From: Andre Anjos <andre.dos.anjos@gmail.com> Date: Fri, 23 Feb 2018 16:24:54 +0100 Subject: [PATCH] Add ipdb to the list of packages to install --- conda/conda-bootstrap.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conda/conda-bootstrap.py b/conda/conda-bootstrap.py index 9fe6286..69d379e 100755 --- a/conda/conda-bootstrap.py +++ b/conda/conda-bootstrap.py @@ -76,7 +76,7 @@ def parse_dependencies(python, path): recipe['requirements'].get('build', []) + \ recipe['requirements'].get('run', []) + \ recipe.get('test', {}).get('requires', []) + \ - ['bob.buildout'] #extra packages required for local dev + ['bob.buildout', 'ipdb'] #extra packages required for local dev def conda_install(subcmd, env, packages): -- GitLab