chore: show banner in cli

This commit is contained in:
Ritchie Mwewa
2026-02-28 03:20:48 +02:00
parent 31742efb5c
commit 054d299a04
3 changed files with 10 additions and 3 deletions

View File

@@ -1,6 +1,6 @@
[project]
name = "octosuite"
version = "5.0.0"
version = "5.1.0"
description = "Terminal-based toolkit for GitHub data analysis."
readme = "README.md"
license = "MIT"

View File

@@ -3,7 +3,13 @@ import json
import sys
import typing as t
from ..lib import export_response, preview_response, console, check_updates
from ..lib import (
export_response,
preview_response,
console,
check_updates,
ascii_banner,
)
from ...api.models import User, Org, Repo, Search
from ...meta import __pkg__, __version__
@@ -358,6 +364,7 @@ def output(
def run_cli(args: argparse.Namespace):
"""Run the CLI."""
ascii_banner(text=__pkg__)
try:
with console.status("Initialising…") as status:
check_updates(is_cli=True, status=status)

2
uv.lock generated
View File

@@ -141,7 +141,7 @@ wheels = [
[[package]]
name = "octosuite"
version = "5.0.0"
version = "5.1.0"
source = { editable = "." }
dependencies = [
{ name = "pyfiglet" },