From 58fa84a34ef2ce859f50bb92753cf5890cb8e1dd Mon Sep 17 00:00:00 2001 From: Oleg Smirnov Date: Mon, 2 Dec 2024 15:54:05 +0200 Subject: [PATCH] fixed --boring/--backend clash --- pyproject.toml | 2 +- stimela/main.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 957d2303..0be688d9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "stimela" -version = "2.0.1" +version = "2.0.1.1" description = "Framework for system agnostic pipelines for (not just) radio interferometry" authors = ["Oleg Smirnov and RATT ", "Sphesihle Makhathini "] readme = "README.rst" diff --git a/stimela/main.py b/stimela/main.py index 875aa5a6..ace9bb38 100644 --- a/stimela/main.py +++ b/stimela/main.py @@ -52,7 +52,7 @@ def resolve_command(self, ctx, args): help="Add directory to _include paths. Can be given multiple times.") @click.option('--clear-cache', '-C', is_flag=True, help="Reset the configuration cache. First thing to try in case of strange configuration errors.") -@click.option('--boring', '-b', is_flag=True, +@click.option('--boring', '-B', is_flag=True, help="Disables progress bar and any other fancy console outputs.") @click.option('--verbose', '-v', is_flag=True, help='Be extra verbose in output.')