From e3e6e9a4dd6007f68ddfc96721233cfe3aa047ef Mon Sep 17 00:00:00 2001 From: Amir MOHAMMADI <amir.mohammadi@idiap.ch> Date: Wed, 15 Sep 2021 18:45:41 +0200 Subject: [PATCH] [boostrap] running conda clean to possibly avoid warnings --- bob/devtools/bootstrap.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bob/devtools/bootstrap.py b/bob/devtools/bootstrap.py index 456d884c..59b2e2aa 100644 --- a/bob/devtools/bootstrap.py +++ b/bob/devtools/bootstrap.py @@ -509,6 +509,9 @@ if __name__ == "__main__": if args.command == "build": + # clean conda cache and packages before building + run_cmdline([conda_bin, "clean", "--all"]) + # simple - just use the defaults channels when self building run_cmdline( [conda_bin, "install", "--yes"] -- GitLab