Skip to content

Commit

Permalink
Merge pull request #19295 from bgruening/flip_mamba
Browse files Browse the repository at this point in the history
[24.1] flip default value for use_mamba to false
  • Loading branch information
nsoranzo authored Dec 10, 2024
2 parents 616fe39 + 285bdf4 commit b39c3b2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/galaxy/tool_util/deps/container_resolvers/mulled.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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)
Expand Down

0 comments on commit b39c3b2

Please sign in to comment.