Skip to content

Latest commit

 

History

History
41 lines (31 loc) · 652 Bytes

File metadata and controls

41 lines (31 loc) · 652 Bytes

cache22

Python virtual environment

# Activate the venv:
source .venv/bin/activate

Always activate the existing virtual environment before running Python tasks like:

ruff format
ruff check
pyright
pytest

Dependencies

# To add runtime Python dependencies:
uv add packagename
# To add development dependencies:
uv add --group dev packagename
# To install/update the venv:
uv sync

Development

This is a greenfield project. Do not preserve any backwards compatibility.

When completing a task, always run the following commands and resolve any issues:

ruff format
ruff check --fix
pyright
pytest