File tree Expand file tree Collapse file tree 3 files changed +5
-9
lines changed Expand file tree Collapse file tree 3 files changed +5
-9
lines changed Original file line number Diff line number Diff line change @@ -12,12 +12,12 @@ build:
12
12
python : latest
13
13
jobs :
14
14
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
18
18
build :
19
19
html :
20
- - uvx nox -s docs-build
20
+ - ${HOME}/.local/bin/ uvx nox -s docs
21
21
post_build :
22
22
- mkdir -p $READTHEDOCS_OUTPUT/html/
23
23
- mv docs/site/* $READTHEDOCS_OUTPUT/html
Original file line number Diff line number Diff line change @@ -10,5 +10,5 @@ Please [visit our website][gh-pages] to see generated documentation.
10
10
To view the documentation locally, some software needs to be installed.
11
11
12
12
> [ !IMPORTANT]
13
- > Please review of [ Contributing doc] ( docs/getting-started .md)
13
+ > Please review of [ Contributing doc] ( ../CONTRIBUTING .md)
14
14
> which contains instruction about building and inspecting docs.
Original file line number Diff line number Diff line change @@ -111,8 +111,6 @@ def llvm_cov(session: nox.Session):
111
111
112
112
To open the built report in your browser::
113
113
uv run nox -s llvm-cov -- --open
114
-
115
- Otherwise, the default profile is used.
116
114
"""
117
115
session .run (
118
116
"cargo" ,
@@ -132,8 +130,6 @@ def pretty_cov(session: nox.Session):
132
130
133
131
To open the built report in your browser::
134
132
uv run nox -s pretty-cov -- --open
135
-
136
- Otherwise, the default profile is used.
137
133
"""
138
134
session .run (
139
135
"cargo" ,
You can’t perform that action at this time.
0 commit comments