Skip to content

Fix sphinx extension for newer versions of sphinx #1

Fix sphinx extension for newer versions of sphinx

Fix sphinx extension for newer versions of sphinx #1

Workflow file for this run

name: Test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
env:
python-version: '3.10'
strategy:
matrix:
tasks: [ 'sphinx' ]
sphinx-version: [ '5.3.0', '6.2.1', '7.*' ]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ env.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ env.python-version }}
- name: Set up Sphinx ${{ matrix.sphinx-version }}
run: |
python -V
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r docs/requirements.txt
pip install "sphinx==${{ matrix.sphinx-version }}"
- name: Tests
run: |
python -m sphinx docs/ build/html -b html -D html_theme=alabaster -D html_theme_options={} -D html_context={}