From d0562e7099178eae7dc9a4012a5ff18aa2360d82 Mon Sep 17 00:00:00 2001 From: Nick Sweeting Date: Fri, 2 May 2025 09:20:19 -0400 Subject: [PATCH] change wording slightly --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c1391aa..d857d60 100644 --- a/README.md +++ b/README.md @@ -491,7 +491,7 @@ Running `actions/checkout` after `setup-uv` **is not supported**. ### Does `setup-uv` also install my project or its dependencies automatically? No, `setup-uv` alone wont install any libraries from your `pyproject.toml` or `requirements.txt`, it only sets up `uv`. -You should run `uv sync`, `uv pip install .`, or use `uv run ...` to have your project and its dependencies installed. +You should run `uv sync` or `uv pip install .` separately, or use `uv run ...` to ensure necessary dependencies are installed. ## Acknowledgements