Support Python 3.12 and 3.13 #193
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Documentation | |
| on: [pull_request] | |
| jobs: | |
| documentation: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: 3.9 | |
| - name: Install | |
| run: | | |
| python --version | |
| python -m pip install --upgrade pip setuptools wheel | |
| python -m pip install .[docs] | |
| - name: Test documentation building | |
| run: | | |
| python docs/build.py | |