Skip to content

Commit 5d4ea1f

Browse files
committed
MAINT: Don't use uv run for quarto
1 parent 2e50fb8 commit 5d4ea1f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

doc/Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,8 @@ download_qrenderer_style: ## Download qrenderer stylesheet
6868
fi
6969

7070
extensions: ## Install quarto/pandoc extensions
71-
$(UVRUN) quarto add --no-prompt has2k1/issuey
72-
$(UVRUN) quarto add --no-prompt has2k1/interlinks
71+
quarto add --no-prompt has2k1/issuey
72+
quarto add --no-prompt has2k1/interlinks
7373

7474
dependencies: extensions download_qrenderer_style ## Install build dependencies
7575

@@ -84,9 +84,9 @@ docstrings: config ## Generate qmd files from the docstrings
8484
@$(PYTHON) -c "$$CREATE_OBJECTS_INV"
8585

8686
html: docstrings download_qrenderer_style ## Build html site
87-
$(UVRUN) quarto render
87+
quarto render
8888

8989
doc: clean interlinks html ## Build html documentation from a clean slate
9090

9191
preview: ## Preview html website
92-
$(UVRUN) quarto preview --port 42000 --no-browser
92+
quarto preview --port 42000 --no-browser

0 commit comments

Comments
 (0)