From 285bdf4fba1c9e3e8c3c95a2fcbe09acc509ba91 Mon Sep 17 00:00:00 2001 From: Bjoern Gruening Date: Mon, 9 Dec 2024 22:08:39 +0100 Subject: [PATCH] flip default value for use_mamba to false --- lib/galaxy/tool_util/deps/container_resolvers/mulled.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/galaxy/tool_util/deps/container_resolvers/mulled.py b/lib/galaxy/tool_util/deps/container_resolvers/mulled.py index b976662ccf6b..3d63c9e4b05f 100644 --- a/lib/galaxy/tool_util/deps/container_resolvers/mulled.py +++ b/lib/galaxy/tool_util/deps/container_resolvers/mulled.py @@ -738,7 +738,7 @@ def __init__( "namespace": namespace, "hash_func": self.hash_func, "command": "build-and-test", - "use_mamba": True, + "use_mamba": False, } self._mulled_kwds["channels"] = default_mulled_conda_channels_from_env() or self._get_config_option( "mulled_channels", DEFAULT_CHANNELS @@ -789,7 +789,7 @@ def __init__( "namespace": "local", "singularity": True, "singularity_image_dir": self.cache_directory.path, - "use_mamba": True, + "use_mamba": False, } self.involucro_context = InvolucroContext(**self._involucro_context_kwds) auto_init = self._get_config_option("involucro_auto_init", True)