Skip to content

Latest commit

 

History

History
44 lines (30 loc) · 580 Bytes

DEVELOPMENT.md

File metadata and controls

44 lines (30 loc) · 580 Bytes

Working with UV

Synchronize / Update Packages

In existing projects, the collected dependencies can be synchronized or updated with a single command.

# Synchronize packages
uv sync --all-extras

# Update packages
uv lock -U

Add Packages

Packages can be added using the following command

# Add  package
uv add pydantic

### Remove Packages

Packages can also be removed.

```bash
# Remove package
uv remove pydantic

Running tests

uv run pytest

Linting

uv run ruff check
# and fixing
uv run ruff check --fix