From eb14ad800ef48e21c97acea59b27bb47252dcf8e Mon Sep 17 00:00:00 2001 From: mcflugen Date: Thu, 10 Oct 2024 11:36:52 -0600 Subject: [PATCH] set venv backend from mamba to conda --- noxfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/noxfile.py b/noxfile.py index a846ff0..afc2e4a 100644 --- a/noxfile.py +++ b/noxfile.py @@ -19,7 +19,7 @@ def test_with_pip(session: nox.Session) -> None: @nox.session( - name="test-with-conda", venv_backend="mamba", python=["3.10", "3.11", "3.12"] + name="test-with-conda", venv_backend="conda", python=["3.10", "3.11", "3.12"] ) def test_with_conda(session: nox.Session) -> None: """Run the tests."""