Skip to content

Update sphinx requirement from <7.1,>=3.0 to >=3.0,<7.3 #2893

Update sphinx requirement from <7.1,>=3.0 to >=3.0,<7.3

Update sphinx requirement from <7.1,>=3.0 to >=3.0,<7.3 #2893

Workflow file for this run

# Workflow which runs all Jupyter notebooks of the documentation and fails on errors.
name: Jupyter Notebooks
on:
# Triggers the workflow on push or pull request
push:
pull_request:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
run_notebooks:
runs-on: ubuntu-latest
steps:
- name: Set up Git repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.9"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
sudo apt-get update
sudo apt-get install $(cat apt.txt)
pip install -r docs/requirements.txt
pip install .
- name: Execute all notebooks with nbconvert
run: |
for file in $(find -wholename "./docs/source/**/*.ipynb" -not -path "**/.ipynb_checkpoints/*")
do
jupyter nbconvert --to notebook --execute --ExecutePreprocessor.kernel_name=python3 $file
done