@@ -8,10 +8,10 @@ README.md: README.qmd
88# which contains a full example for the interlinks filter to be tested
99
1010$(EXAMPLE_INTERLINKS ) : scripts/filter-spec/generate_files.py
11- python3 $<
11+ uv run python $<
1212
1313$(EXAMPLE_INTERLINKS ) /test.qmd : scripts/filter-spec/generate_test_qmd.py
14- python3 $<
14+ uv run python $<
1515
1616$(EXAMPLE_INTERLINKS ) /test.md : $(EXAMPLE_INTERLINKS ) /test.qmd _extensions/interlinks/interlinks.lua
1717 cd $(EXAMPLE_INTERLINKS ) && quarto render test.qmd --to gfm
@@ -21,8 +21,8 @@ examples/%/_site: examples/%/_quarto.yml
2121 cd examples/$* \
2222 && quarto add --no-prompt ../.. \
2323 && quarto add --no-prompt quarto-ext/shinylive
24- cd examples/$* && quartodoc build --config _quarto.yml --verbose
25- cd examples/$* && quartodoc interlinks
24+ cd examples/$* && uv run quartodoc build --config _quarto.yml --verbose
25+ cd examples/$* && uv run quartodoc interlinks
2626 quarto render $(dir $< )
2727
2828
@@ -45,12 +45,12 @@ docs-build-readme:
4545
4646docs-build : export PLUM_SIMPLE_DOC=1
4747docs-build : docs-build-examples
48- cd docs && quartodoc build --verbose
49- cd docs && quartodoc interlinks
48+ cd docs && uv run quartodoc build --verbose
49+ cd docs && uv run quartodoc interlinks
5050 cd docs && quarto add --no-prompt ..
5151 quarto render docs
5252
5353test-overview-template :
54- python scripts/build_tmp_starter.py
54+ uv run python scripts/build_tmp_starter.py
5555
5656test-interlinks : quartodoc/tests/example_interlinks/test.md
0 commit comments