From 70fa2b38798d570d20f37a3964cb4b41d0e33e1e Mon Sep 17 00:00:00 2001 From: Carter Francis Date: Thu, 15 Aug 2024 14:13:30 -0500 Subject: [PATCH] Use Python 3.11 --- .github/workflows/documentation.yaml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/documentation.yaml b/.github/workflows/documentation.yaml index aa74e0d..4b6d89e 100644 --- a/.github/workflows/documentation.yaml +++ b/.github/workflows/documentation.yaml @@ -12,15 +12,19 @@ jobs: - uses: actions/checkout@v4 - name: Set up Python - - uses: actions/setup-python@v5 + uses: actions/setup-python@v5 with: python-version: '3.11' + - name: Install dependencies + shell: bash run: | pip install -U -e .'[doc]' + - name: Sphinx build run: | sphinx-build doc _build + - name: Deploy to GitHub Pages uses: peaceiris/actions-gh-pages@v3 if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}