Skip to content

Update sphinx-rtd-theme requirement from <1.4,>=1.0 to >=1.0,<2.1 #136

Update sphinx-rtd-theme requirement from <1.4,>=1.0 to >=1.0,<2.1

Update sphinx-rtd-theme requirement from <1.4,>=1.0 to >=1.0,<2.1 #136

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
linting:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8]
tox-env: [docs, black, flake8]
steps:
- uses: actions/checkout@v4
- name: Using Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install tox
run: python -m pip install tox
- name: Run tox env ${{ matrix.tox-env }}
run: tox -e ${{ matrix.tox-env }}
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
python-version: ["3.8", "3.9", "3.10", "3.11"]
sphinx-version: ["sphinx44", "sphinx45", "sphinx50", "sphinx51", "sphinx52", "sphinx53"]
readthedocs-theme-version: [ "theme100", "theme110"]
sphinxextension: ["on", "off"]
include:
- os: macos-latest
python-version: 3.8
sphinx-version: sphinx44
readthedocs-theme-version: theme100
sphinxextension: "on"
- os: windows-latest
python-version: 3.8
sphinx-version: sphinx44
readthedocs-theme-version: theme100
sphinxextension: "on"
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install tox
run: python -m pip install tox
- name: Test
run: tox -e py${{ matrix.python-version }}-${{ matrix.sphinx-version }}-${{ matrix.readthedocs-theme-version }}