Skip to content

Commit

Permalink
fix: use conda instead of mamba by default
Browse files Browse the repository at this point in the history
  • Loading branch information
johanneskoester committed Nov 5, 2024
1 parent 2833cee commit 5cf9763
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions snakedeploy/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,9 +129,9 @@ def get_parser():
)
pin_conda_envs.add_argument(
"--conda-frontend",
choices=["mamba", "conda"],
default="mamba",
help="Conda frontend to use (default: mamba).",
choices=["conda", "mamba"],
default="conda",
help="Conda frontend to use (default: conda).",
)
pin_conda_envs.add_argument(
"--create-prs",
Expand Down

0 comments on commit 5cf9763

Please sign in to comment.