Use uv consistently throughout the documentation (#15302)

## Summary

Closes
https://github.com/astral-sh/ruff/issues/15301#issuecomment-2573350821.
This commit is contained in:
Charlie Marsh 2025-01-07 09:43:25 -05:00 committed by GitHub
parent 95294e657c
commit 5567e7c26b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 104 additions and 41 deletions

View File

@ -116,12 +116,21 @@ For more, see the [documentation](https://docs.astral.sh/ruff/).
### Installation ### Installation
Ruff is available as [`ruff`](https://pypi.org/project/ruff/) on PyPI: Ruff is available as [`ruff`](https://pypi.org/project/ruff/) on PyPI.
Invoke Ruff directly with [`uvx`](https://docs.astral.sh/uv/):
```shell
uvx ruff check # Lint all files in the current directory.
uvx ruff format # Format all files in the current directory.
```
Or install Ruff with `uv` (recommended), `pip`, or `pipx`:
```shell ```shell
# With uv. # With uv.
uv add --dev ruff # to add ruff to your project uv tool install ruff@latest # Install Ruff globally.
uv tool install ruff # to install ruff globally uv add --dev ruff # Or add Ruff to your project.
# With pip. # With pip.
pip install ruff pip install ruff

View File

@ -220,19 +220,39 @@ Ruff is installable under any Python version from 3.7 onwards.
## Do I need to install Rust to use Ruff? ## Do I need to install Rust to use Ruff?
Nope! Ruff is available as [`ruff`](https://pypi.org/project/ruff/) on PyPI: Nope! Ruff is available as [`ruff`](https://pypi.org/project/ruff/) on PyPI. We recommend installing Ruff with [uv](https://docs.astral.sh/uv/),
though it's also installable with `pip`, `pipx`, and a [variety of other package managers](installation.md):
```console ```console
# With uv. $ # Install Ruff globally.
$ uv add --dev ruff # to add ruff to your project $ uv tool install ruff@latest
$ uv tool install ruff # to install ruff globally
# With pip $ # Or add Ruff to your project.
$ uv add --dev ruff
$ # With pip.
$ pip install ruff $ pip install ruff
$ # With pipx.
$ pipx install ruff
``` ```
Ruff ships with wheels for all major platforms, which enables `pip` to install Ruff without relying Starting with version `0.5.0`, Ruff can also be installed with our standalone installers:
on Rust at all.
```console
$ # On macOS and Linux.
$ curl -LsSf https://astral.sh/ruff/install.sh | sh
$ # On Windows.
$ powershell -c "irm https://astral.sh/ruff/install.ps1 | iex"
$ # For a specific version.
$ curl -LsSf https://astral.sh/ruff/0.5.0/install.sh | sh
$ powershell -c "irm https://astral.sh/ruff/0.5.0/install.ps1 | iex"
```
Ruff ships with wheels for all major platforms, which enables `uv`, `pip`, and other tools to install Ruff without
relying on a Rust toolchain at all.
## Can I write my own linter plugins for Ruff? ## Can I write my own linter plugins for Ruff?

View File

@ -1,9 +1,28 @@
# Installing Ruff # Installing Ruff
Ruff is available as [`ruff`](https://pypi.org/project/ruff/) on PyPI: Ruff is available as [`ruff`](https://pypi.org/project/ruff/) on PyPI.
Ruff can be invoked directly with [`uvx`](https://docs.astral.sh/uv/):
```shell
uvx ruff check # Lint all files in the current directory.
uvx ruff format # Format all files in the current directory.
```
Or installed with `uv` (recommended), `pip`, or `pipx`:
```console ```console
$ # Install Ruff globally.
$ uv tool install ruff@latest
$ # Or add Ruff to your project.
$ uv add --dev ruff
$ # With pip.
$ pip install ruff $ pip install ruff
$ # With pipx.
$ pipx install ruff
``` ```
Once installed, you can run Ruff from the command line: Once installed, you can run Ruff from the command line:
@ -13,7 +32,7 @@ $ ruff check # Lint all files in the current directory.
$ ruff format # Format all files in the current directory. $ ruff format # Format all files in the current directory.
``` ```
Starting with version `0.5.0`, Ruff can be installed with our standalone installers: Starting with version `0.5.0`, Ruff can also be installed with our standalone installers:
```console ```console
$ # On macOS and Linux. $ # On macOS and Linux.

View File

@ -5,21 +5,24 @@ your project. For a more detailed overview, see [_Configuring Ruff_](configurati
## Getting Started ## Getting Started
To start, we'll install Ruff through PyPI (or with your [preferred package manager](installation.md)): To start, we'll initialize a project using [uv](https://docs.astral.sh/uv/):
```console ```console
$ pip install ruff $ uv init numbers
``` ```
Let's then assume that our project structure looks like: This command creates a Python project with the following structure:
```text ```text
numbers numbers
├── pyproject.toml
└── src
└── numbers
├── __init__.py ├── __init__.py
└── numbers.py └── py.typed
``` ```
...where `numbers.py` contains the following code: We'll then replace the contents of `src/numbers/__init__.py` with the following code:
```python ```python
from typing import Iterable from typing import Iterable
@ -35,28 +38,40 @@ def sum_even_numbers(numbers: Iterable[int]) -> int:
) )
``` ```
We can run the Ruff linter over our project via `ruff check`: Next, we'll add Ruff to our project:
```console ```console
$ ruff check $ uv add --dev ruff
numbers/numbers.py:3:8: F401 [*] `os` imported but unused ```
We can then run the Ruff linter over our project via `uv run ruff check`:
```console
$ uv run ruff check
src/numbers/__init__.py:3:8: F401 [*] `os` imported but unused
Found 1 error. Found 1 error.
[*] 1 fixable with the `--fix` option. [*] 1 fixable with the `--fix` option.
``` ```
!!! note
As an alternative to `uv run`, you can also run Ruff by activating the project's virtual
environment (`source .venv/bin/active` on Linux and macOS, or `.venv\Scripts\activate` on
Windows) and running `ruff check` directly.
Ruff identified an unused import, which is a common error in Python code. Ruff considers this a Ruff identified an unused import, which is a common error in Python code. Ruff considers this a
"fixable" error, so we can resolve the issue automatically by running `ruff check --fix`: "fixable" error, so we can resolve the issue automatically by running `ruff check --fix`:
```console ```console
$ ruff check --fix $ uv run ruff check --fix
Found 1 error (1 fixed, 0 remaining). Found 1 error (1 fixed, 0 remaining).
``` ```
Running `git diff` shows the following: Running `git diff` shows the following:
```diff ```diff
--- a/numbers/numbers.py --- a/src/numbers/__init__.py
+++ b/numbers/numbers.py +++ b/src/numbers/__init__.py
@@ -1,7 +1,5 @@ @@ -1,7 +1,5 @@
from typing import Iterable from typing import Iterable
@ -74,13 +89,13 @@ def sum_even_numbers(numbers: Iterable[int]) -> int:
Note Ruff runs in the current directory by default, but you can pass specific paths to check: Note Ruff runs in the current directory by default, but you can pass specific paths to check:
```console ```console
$ ruff check numbers/numbers.py $ uv run ruff check src/numbers/__init__.py
``` ```
Now that our project is passing `ruff check`, we can run the Ruff formatter via `ruff format`: Now that our project is passing `ruff check`, we can run the Ruff formatter via `ruff format`:
```console ```console
$ ruff format $ uv run ruff format
1 file reformatted 1 file reformatted
``` ```
@ -109,7 +124,7 @@ Ruff's behavior.
To determine the appropriate settings for each Python file, Ruff looks for the first To determine the appropriate settings for each Python file, Ruff looks for the first
`pyproject.toml`, `ruff.toml`, or `.ruff.toml` file in the file's directory or any parent directory. `pyproject.toml`, `ruff.toml`, or `.ruff.toml` file in the file's directory or any parent directory.
To configure Ruff, let's create a configuration file in our project's root directory: To configure Ruff, we'll add the following to the configuration file in our project's root directory:
=== "pyproject.toml" === "pyproject.toml"
@ -141,8 +156,8 @@ To configure Ruff, let's create a configuration file in our project's root direc
Running Ruff again, we see that it now enforces a maximum line width, with a limit of 79: Running Ruff again, we see that it now enforces a maximum line width, with a limit of 79:
```console ```console
$ ruff check $ uv run ruff check
numbers/numbers.py:5:80: E501 Line too long (90 > 79) src/numbers/__init__.py:5:80: E501 Line too long (90 > 79)
Found 1 error. Found 1 error.
``` ```
@ -223,8 +238,8 @@ If we run Ruff again, we'll see that it now enforces the pyupgrade rules. In par
the use of the deprecated `typing.Iterable` instead of `collections.abc.Iterable`: the use of the deprecated `typing.Iterable` instead of `collections.abc.Iterable`:
```console ```console
$ ruff check $ uv run ruff check
numbers/numbers.py:1:1: UP035 [*] Import from `collections.abc` instead: `Iterable` src/numbers/__init__.py:1:1: UP035 [*] Import from `collections.abc` instead: `Iterable`
Found 1 error. Found 1 error.
[*] 1 fixable with the `--fix` option. [*] 1 fixable with the `--fix` option.
``` ```
@ -266,10 +281,10 @@ all functions have docstrings:
If we run Ruff again, we'll see that it now enforces the pydocstyle rules: If we run Ruff again, we'll see that it now enforces the pydocstyle rules:
```console ```console
$ ruff check $ uv run ruff check
numbers/__init__.py:1:1: D104 Missing docstring in public package numbers/__init__.py:1:1: D104 Missing docstring in public package
numbers/numbers.py:1:1: UP035 [*] Import from `collections.abc` instead: `Iterable` src/numbers/__init__.py:1:1: UP035 [*] Import from `collections.abc` instead: `Iterable`
numbers/numbers.py:1:1: D100 Missing docstring in public module src/numbers/__init__.py:1:1: D100 Missing docstring in public module
Found 3 errors. Found 3 errors.
[*] 1 fixable with the `--fix` option. [*] 1 fixable with the `--fix` option.
``` ```
@ -291,9 +306,9 @@ def sum_even_numbers(numbers: Iterable[int]) -> int:
Running `ruff check` again, we'll see that it no longer flags the `Iterable` import: Running `ruff check` again, we'll see that it no longer flags the `Iterable` import:
```console ```console
$ ruff check $ uv run ruff check
numbers/__init__.py:1:1: D104 Missing docstring in public package numbers/__init__.py:1:1: D104 Missing docstring in public package
numbers/numbers.py:1:1: D100 Missing docstring in public module src/numbers/__init__.py:1:1: D100 Missing docstring in public module
Found 3 errors. Found 3 errors.
``` ```
@ -322,7 +337,7 @@ line based on its existing violations. We can combine `--add-noqa` with the `--s
flag to add `# noqa` directives to all existing `UP035` violations: flag to add `# noqa` directives to all existing `UP035` violations:
```console ```console
$ ruff check --select UP035 --add-noqa . $ uv run ruff check --select UP035 --add-noqa .
Added 1 noqa directive. Added 1 noqa directive.
``` ```
@ -331,8 +346,8 @@ Running `git diff` shows the following:
```diff ```diff
diff --git a/tutorial/src/main.py b/tutorial/src/main.py diff --git a/tutorial/src/main.py b/tutorial/src/main.py
index b9291c5ca..b9f15b8c1 100644 index b9291c5ca..b9f15b8c1 100644
--- a/numbers/numbers.py --- a/src/numbers/__init__.py
+++ b/numbers/numbers.py +++ b/src/numbers/__init__.py
@@ -1,4 +1,4 @@ @@ -1,4 +1,4 @@
-from typing import Iterable -from typing import Iterable
+from typing import Iterable # noqa: UP035 +from typing import Iterable # noqa: UP035

View File

@ -4,10 +4,10 @@ Compare lint and format results for two different ruff versions (e.g. main and a
## Installation ## Installation
From the Ruff project root, install with `pip`: From the Ruff project root, install with [uv](https://docs.astral.sh/uv/):
```shell ```shell
pip install -e ./python/ruff-ecosystem uv tool install -e ./python/ruff-ecosystem
``` ```
## Usage ## Usage