From d507211dee69f3025878b2cbce61331f5252eba0 Mon Sep 17 00:00:00 2001 From: Daniel Giles Date: Wed, 21 Jan 2026 12:12:48 -0500 Subject: [PATCH 1/2] update documentation workflow file --- .github/workflows/documentation.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml index 3d1a627..84c012b 100644 --- a/.github/workflows/documentation.yml +++ b/.github/workflows/documentation.yml @@ -17,11 +17,14 @@ jobs: - run: echo "# Test" | pandoc -t html - name: Install dependencies run: | - pip install poetry - poetry install --with dev + mkdir poetry + python -m venv ./poetry + ./poetry/bin/python -m pip install --upgrade pip + ./poetry/bin/pip install poetry==2.2.1 + ./poetry/bin/poetry install --with dev - name: Sphinx build run: | - poetry run sphinx-build docs _build + ./poetry/bin/poetry run sphinx-build docs _build - name: Deploy to GitHub Pages uses: peaceiris/actions-gh-pages@v3 if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }} From c9393d620498967861db7fcccdfa4045ce83f4cf Mon Sep 17 00:00:00 2001 From: Daniel Giles Date: Wed, 21 Jan 2026 12:18:12 -0500 Subject: [PATCH 2/2] set python version to 3.13 for documentation workflow --- .github/workflows/documentation.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml index 84c012b..d9c50d4 100644 --- a/.github/workflows/documentation.yml +++ b/.github/workflows/documentation.yml @@ -11,6 +11,8 @@ jobs: steps: - uses: actions/checkout@v3 - uses: actions/setup-python@v3 + with: + python-version: '3.13' - uses: r-lib/actions/setup-pandoc@v2 with: pandoc-version: '3.1.11' # The pandoc version to download (if necessary) and use.