From 70345cfd53710f2c240386f18bd053daf4415c21 Mon Sep 17 00:00:00 2001 From: Jonathan Ehwald Date: Sun, 19 Oct 2025 04:21:26 +0200 Subject: [PATCH] Update development workflow docs --- README.md | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index eab62f1..814385e 100644 --- a/README.md +++ b/README.md @@ -37,10 +37,7 @@ print(response) ## Development -1. Clone the repository and change into its directory -2. Create a virtual environment: `uv venv --seed` -3. Install dev dependencies: `uv sync --only-dev` -4. Activate the virtual environment: `source .venv/bin/activate` -5. Make changes to the code and tests -6. Build the package: `maturin develop` -7. Run the tests: `pytest` +1. Install dependencies into a virtual env: `uv sync` +2. Make changes to the code and tests +3. Build the package: `uv run maturin develop` +4. Run the tests: `uv run pytest`