Add Python 3.12 to package info #24
This file contains 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
# This workflow builds the docs on every push to validate them. These | |
# are not published to ReadTheDocs, the production docs are still built | |
# by ReadTheDocs tracking the default branch. | |
name: Build Docs | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.11" | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install --user -r docs/requirements.txt | |
python -m pip install --user sphinx_rtd_theme | |
- name: Build docs | |
run: | | |
cd ./docs/ | |
python -m sphinx -T -E -W -b html . ./build/html |