Skip to content

Commit

Permalink
hspylib deps should be ge
Browse files Browse the repository at this point in the history
  • Loading branch information
yorevs committed Oct 25, 2024
1 parent 038d992 commit fc0a16b
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions dependencies.hspd
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
10 changes: 5 additions & 5 deletions src/main/askai/core/commander/commands/general_cmd.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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.
Expand Down
6 changes: 3 additions & 3 deletions src/main/requirements.txt
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit fc0a16b

Please sign in to comment.