Skip to content

Commit

Permalink
Align use of actions/setup-python with uv docu (#207)
Browse files Browse the repository at this point in the history
Closes: #197
  • Loading branch information
eifinger authored Dec 22, 2024
1 parent 12c852e commit d174a24
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -334,10 +334,11 @@ by name (`uv`).

### Do I still need `actions/setup-python` alongside `setup-uv`?

No. This action is modelled as a drop-in replacement for `actions/setup-python` when using uv. With
`setup-uv`, you can install a specific version of Python using `uv python install` rather than
With `setup-uv`, you can install a specific version of Python using `uv python install` rather than
relying on `actions/setup-python`.

Using `actions/setup-python` can be faster, because GitHub caches the Python versions alongside the runner.

For example:

```yaml
Expand All @@ -348,7 +349,7 @@ For example:
with:
enable-cache: true
- name: Test
run: uv run --frozen pytest
run: uv run --frozen pytest # Uses the Python version automatically installed by uv
```

To install a specific version of Python, use
Expand Down

0 comments on commit d174a24

Please sign in to comment.