When running Python scripts in this repository, please use the uv run command rather than invoking python directly. The project uses uv to provide the configured runtime and task orchestration.
Examples:
uv run dte.py
uv run ./scripts/application.pyIf you frequently run Python directly, you can add an optional shell alias (local to your machine) to map python to uv run:
alias python='uv run'Note: Adding the alias is optional — it affects your interactive shell only. Prefer using uv run explicitly in CI and shared automation so behavior is reproducible for all contributors.