From b09174d2169852c227a624b15369fd64d72f1e0e Mon Sep 17 00:00:00 2001 From: farchaab Date: Thu, 17 Oct 2024 16:04:25 +0200 Subject: [PATCH] changed default sdm to apptainer --- mess/util.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mess/util.py b/mess/util.py index 193a4c2..15054ff 100644 --- a/mess/util.py +++ b/mess/util.py @@ -193,8 +193,8 @@ def common_options(func): ), click.option( "--sdm", - type=click.Choice(["conda", "apptainer"]), - default="conda", + type=click.Choice(["apptainer", "conda"]), + default="apptainer", help="Software deplolyment method", show_default=True, ),