From c0eb8f867876ebbec3a0aa77cce5a290c6ee1c65 Mon Sep 17 00:00:00 2001 From: "Luke W. Johnston" Date: Thu, 21 May 2026 20:42:59 +0200 Subject: [PATCH] =?UTF-8?q?refactor:=20=F0=9F=94=A8=20remove=20`build-pdf`?= =?UTF-8?q?=20from=20justfile,=20not=20needed=20anymore?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- template/justfile.jinja | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/template/justfile.jinja b/template/justfile.jinja index efe61a4..313ef51 100644 --- a/template/justfile.jinja +++ b/template/justfile.jinja @@ -113,16 +113,6 @@ check-urls: --extensions md,qmd,py \ --exclude-path "_badges.qmd" -# Build the documentation as PDF using Quarto -build-pdf: - # To let Quarto know where python is. - export QUARTO_PYTHON=.venv/bin/python3 - uv run quarto install tinytex - # For generating images from Mermaid diagrams - uv run quarto install chromium - uv run quarto render --profile pdf --to pdf - find docs -name "mermaid-figure-*.png" -delete - # Check for unused code in the package and its tests check-unused: # exit code=0: No unused code was found