From 7af200583e0dfaa1d82cb0fdf7dd03424dc4e987 Mon Sep 17 00:00:00 2001 From: dengemann Date: Tue, 18 Jul 2023 11:15:08 +0200 Subject: [PATCH] fix pandoc attempt --- .github/workflows/build_doc.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build_doc.yml b/.github/workflows/build_doc.yml index 565a15f..b414886 100644 --- a/.github/workflows/build_doc.yml +++ b/.github/workflows/build_doc.yml @@ -27,12 +27,14 @@ jobs: python -m pip install --user --upgrade --progress-bar off -r requirements.txt python -m pip install --user --upgrade --progress-bar off -r doc/requirements.txt python -m pip install --user --upgrade --progress-bar off ipython "https://api.github.com/repos/sphinx-gallery/sphinx-gallery/zipball/master" memory_profiler + python -m pip install --user --upgrade pandoc python -m pip install --user -e . # Look at what we have and fail early if there is some library conflict - name: Check installation run: | which python python -c "import coffeine" + python -c "import pandoc" # Build docs - name: Generate HTML docs uses: rickstaa/sphinx-action@master @@ -41,4 +43,4 @@ jobs: - uses: actions/upload-artifact@v1 with: name: Documentation - path: doc/build/html/ \ No newline at end of file + path: doc/build/html/