Merge pull request #111 from crewAIInc/feat/migrate-uv

Feat/migrate uv
This commit is contained in:
Eduardo Chiarotti
2024-10-15 14:49:39 -03:00
committed by GitHub

View File

@@ -96,13 +96,14 @@ Please ensure your code adheres to our coding standards and includes appropriate
**Installing Dependencies:** **Installing Dependencies:**
```bash ```bash
poetry install uv sync
``` ```
**Activating Virtual Environment:** **Activating Virtual Environment:**
```bash ```bash
poetry shell uv venv
source .venv/bin/activate
``` ```
**Setting Up Pre-commit Hooks:** **Setting Up Pre-commit Hooks:**
@@ -114,19 +115,19 @@ pre-commit install
**Running Tests:** **Running Tests:**
```bash ```bash
poetry run pytest uv run pytest
``` ```
**Static Type Checking:** **Static Type Checking:**
```bash ```bash
poetry run pyright uv run pyright
``` ```
**Packaging:** **Packaging:**
```bash ```bash
poetry build uv build
``` ```
**Local Installation:** **Local Installation:**