Skip to content

Commit 32ff03c

Browse files
committed
Fix dep install
1 parent 03cc551 commit 32ff03c

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/docs-build-template.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,11 @@ jobs:
3838

3939
- name: Install doc deps
4040
run: |
41+
4142
if [ -f pyproject.toml ]; then
42-
uv pip install -r pyproject.toml --extra docs
43+
uv pip install --system -r pyproject.toml --extra docs
4344
elif [ -f python/pyproject.toml ]; then
44-
uv pip install -r python/pyproject.toml --extra docs
45+
uv pip install --system -r python/pyproject.toml --extra docs
4546
else
4647
echo "No pyproject.toml found in root or python/ directory"
4748
exit 1

0 commit comments

Comments
 (0)