From 90a13cb6f741c26d677c7389cdad027686285b80 Mon Sep 17 00:00:00 2001 From: Eduardo Chiarotti Date: Tue, 15 Oct 2024 09:16:17 -0300 Subject: [PATCH] feat: change to uv on docs --- README.md | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index f622ec49d..491890877 100644 --- a/README.md +++ b/README.md @@ -96,13 +96,14 @@ Please ensure your code adheres to our coding standards and includes appropriate **Installing Dependencies:** ```bash -poetry install +uv sync ``` **Activating Virtual Environment:** ```bash -poetry shell +uv venv +source .venv/bin/activate ``` **Setting Up Pre-commit Hooks:** @@ -114,19 +115,19 @@ pre-commit install **Running Tests:** ```bash -poetry run pytest +uv run pytest ``` **Static Type Checking:** ```bash -poetry run pyright +uv run pyright ``` **Packaging:** ```bash -poetry build +uv build ``` **Local Installation:**