change wording slightly

This commit is contained in:
Nick Sweeting 2025-05-02 09:20:19 -04:00 committed by GitHub
parent 1a4807090c
commit d0562e7099
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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