Skip to content

Commit bf602b3

Browse files
committed
review changes
1 parent 9704f93 commit bf602b3

File tree

3 files changed

+5
-9
lines changed

3 files changed

+5
-9
lines changed

.config/.readthedocs.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ build:
1212
python: latest
1313
jobs:
1414
pre_create_environment:
15-
- asdf plugin add uv
16-
- asdf install uv latest
17-
- asdf global uv latest
15+
- >-
16+
UV_INSTALL_DIR="${HOME}/.local/bin" &&
17+
curl -LsSf https://astral.sh/uv/install.sh | sh
1818
build:
1919
html:
20-
- uvx nox -s docs-build
20+
- ${HOME}/.local/bin/uvx nox -s docs
2121
post_build:
2222
- mkdir -p $READTHEDOCS_OUTPUT/html/
2323
- mv docs/site/* $READTHEDOCS_OUTPUT/html

docs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ Please [visit our website][gh-pages] to see generated documentation.
1010
To view the documentation locally, some software needs to be installed.
1111

1212
> [!IMPORTANT]
13-
> Please review of [Contributing doc](docs/getting-started.md)
13+
> Please review of [Contributing doc](../CONTRIBUTING.md)
1414
> which contains instruction about building and inspecting docs.

noxfile.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -111,8 +111,6 @@ def llvm_cov(session: nox.Session):
111111
112112
To open the built report in your browser::
113113
uv run nox -s llvm-cov -- --open
114-
115-
Otherwise, the default profile is used.
116114
"""
117115
session.run(
118116
"cargo",
@@ -132,8 +130,6 @@ def pretty_cov(session: nox.Session):
132130
133131
To open the built report in your browser::
134132
uv run nox -s pretty-cov -- --open
135-
136-
Otherwise, the default profile is used.
137133
"""
138134
session.run(
139135
"cargo",

0 commit comments

Comments
 (0)