diff --git a/dependencies.hspd b/dependencies.hspd index d2174c74..a42ad91c 100644 --- a/dependencies.hspd +++ b/dependencies.hspd @@ -8,9 +8,9 @@ */ /* HSPyLib projects */ -package: hspylib, version: 1.12.51, mode: eq -package: hspylib-clitt, version: 0.9.139, mode: eq -package: hspylib-setman, version: 0.10.42, mode: eq +package: hspylib, version: 1.12.51, mode: ge +package: hspylib-clitt, version: 0.9.139, mode: ge +package: hspylib-setman, version: 0.10.42, mode: ge /* General */ package: retry2, version: 0.9.5, mode: eq diff --git a/src/main/askai/core/commander/commands/general_cmd.py b/src/main/askai/core/commander/commands/general_cmd.py index 45e0e3fb..acf70a48 100644 --- a/src/main/askai/core/commander/commands/general_cmd.py +++ b/src/main/askai/core/commander/commands/general_cmd.py @@ -31,6 +31,11 @@ class GeneralCmd(ABC): """Provides general command functionalities.""" + @staticmethod + def app_info() -> None: + """Display some useful application information.""" + display_text(shared.app_info, markdown=False) + @staticmethod def execute(cmd_line: str | None = None) -> None: """Execute a terminal command. @@ -73,11 +78,6 @@ def idiom(locale_str: str) -> None: except (ValueError, TypeError) as err: display_text(f"\n%RED%-=- Failed to set idiom: '{str(err)}'! -=-%NC%") - @staticmethod - def app_info() -> None: - """Display some useful application information.""" - display_text(shared.app_info, markdown=False) - @staticmethod def translate(from_lang: Language, to_lang: Language, *texts: str) -> None: """Translate text from the source language to the target language. diff --git a/src/main/requirements.txt b/src/main/requirements.txt index 71c5ad9d..7d8933df 100644 --- a/src/main/requirements.txt +++ b/src/main/requirements.txt @@ -1,8 +1,8 @@ ###### AUTO-GENERATED Requirements file for: AskAI ###### -hspylib==1.12.51 -hspylib-clitt==0.9.139 -hspylib-setman==0.10.42 +hspylib>=1.12.51 +hspylib-clitt>=0.9.139 +hspylib-setman>=0.10.42 retry2==0.9.5 pause==0.3 tqdm==4.66.5