mirror of https://github.com/astral-sh/uv
Fix reference to file in docs contributing guide (#5127)
This commit is contained in:
parent
616a61a244
commit
47e453b01a
|
|
@ -129,7 +129,7 @@ To preview any changes to the documentation locally:
|
|||
uv pip install -r docs/requirements.txt
|
||||
|
||||
# Or, for members of the Astral org, which has access to MkDocs Insiders via sponsorship.
|
||||
uv pip install -r docs/requirements.insiders.txt
|
||||
uv pip install -r docs/requirements-insiders.txt
|
||||
```
|
||||
|
||||
1. Run the development server with:
|
||||
|
|
@ -145,11 +145,11 @@ To preview any changes to the documentation locally:
|
|||
The documentation should then be available locally at
|
||||
[http://127.0.0.1:8000/uv/](http://127.0.0.1:8000/uv/).
|
||||
|
||||
To update the documentation dependencies, edit `docs/requirements.in` and `docs/requirements.insiders.in`, then run:
|
||||
To update the documentation dependencies, edit `docs/requirements.in` and `docs/requirements-insiders.in`, then run:
|
||||
|
||||
```shell
|
||||
uv pip compile docs/requirements.in -o docs/requirements.txt --universal -p 3.12
|
||||
uv pip compile docs/requirements.insiders.in -o docs/requirements.insiders.txt --universal -p 3.12
|
||||
uv pip compile docs/requirements-insiders.in -o docs/requirements-insiders.txt --universal -p 3.12
|
||||
```
|
||||
|
||||
Documentation is deployed automatically on release by publishing to the [Astral documentation](https://github.com/astral-sh/docs)
|
||||
|
|
|
|||
Loading…
Reference in New Issue