From 7a624b6aac23fd9b8dd48d6113ef57671144d4f9 Mon Sep 17 00:00:00 2001 From: Rohit Goswami Date: Mon, 2 Dec 2024 05:39:54 +0000 Subject: [PATCH] BUG: Ensure _mamba_helpers is optional --- asv/plugin_manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/asv/plugin_manager.py b/asv/plugin_manager.py index d1c75ec5a..d8f39ef03 100644 --- a/asv/plugin_manager.py +++ b/asv/plugin_manager.py @@ -7,7 +7,7 @@ from . import commands, plugins from .console import log -ENV_PLUGINS = [".mamba", ".virtualenv", ".conda", ".rattler"] +ENV_PLUGINS = [".mamba", "._mamba_helpers", ".virtualenv", ".conda", ".rattler"] class PluginManager: """