From 8c33335e27a450607bada6bc9832fa1f82415f18 Mon Sep 17 00:00:00 2001 From: MARCHAND MANON Date: Tue, 23 Jul 2024 13:53:18 +0200 Subject: [PATCH] docs: add pandoc dependency --- .github/workflows/build-docs-tests.yml | 1 + docs/community/community.md | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/.github/workflows/build-docs-tests.yml b/.github/workflows/build-docs-tests.yml index 9489c9af..06d63624 100644 --- a/.github/workflows/build-docs-tests.yml +++ b/.github/workflows/build-docs-tests.yml @@ -21,6 +21,7 @@ jobs: python-version: 3.12 - name: "Test doc" run: | + sudo apt-get install pandoc python3 -m pip install --upgrade pip setuptools pip install .[docs,recommended] cd ./docs diff --git a/docs/community/community.md b/docs/community/community.md index ff3d350e..1c255aca 100644 --- a/docs/community/community.md +++ b/docs/community/community.md @@ -58,7 +58,11 @@ npm run js-test ### Check that the documentation still builds +You'll need `pandoc`, see https://pandoc.org/installing.html +Then, + ```sh +pip install .[docs] cd docs make clean html ```