diff --git a/tasks.py b/tasks.py index a59abad..c1f6ee3 100644 --- a/tasks.py +++ b/tasks.py @@ -20,6 +20,11 @@ def fmt(c: Context) -> None: @task def pip_compile(c: Context) -> None: c.run("uv pip compile pyproject.toml -o requirements.txt", echo=True, pty=True) + output_line_1 = "\n:heavy_check_mark:[bold green] Operation succeeded![/bold green]" + output_line_2 = ( + ":yin_yang: [bold cyan]requirements.txt[/bold cyan] compiled from [bold blue]pyproject.toml[/bold blue] :robot:" + ) + print(f"{output_line_1}\n{output_line_2}") @task