From 5d0f1da322d01c3f0930c417cd91752f4c6b83eb Mon Sep 17 00:00:00 2001 From: "Thomas (Tom) C. Gorordo" Date: Mon, 25 May 2026 00:29:37 -0700 Subject: [PATCH] fix cli compilation --- justfile | 4 ++-- src/smithycmd.py | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/justfile b/justfile index 631c88b..9090eec 100644 --- a/justfile +++ b/justfile @@ -20,12 +20,12 @@ test: uv run pytest -vvv --tb=short --log-cli-level=INFO compile: - uv run pyinstaller --clean -F src/cmd.py --name smithycmd + uv run --with-requirements src/smithycmd.py pyinstaller --clean -F src/smithycmd.py --name smithycmd clean: uv run pyclean src test uv run ruff clean - rm -rf smithy.spec build dist .pytest_cache .hypothesis .benchmarks __marimo__ + rm -rf smithycmd.spec build dist .pytest_cache .hypothesis .benchmarks __marimo__ wipe: just clean diff --git a/src/smithycmd.py b/src/smithycmd.py index 1c1420c..ae2de98 100644 --- a/src/smithycmd.py +++ b/src/smithycmd.py @@ -12,6 +12,7 @@ from rich.console import Console from rich.table import Table from rich.panel import Panel +import polars as pl from smithy import smith_set @click.command()