Skip to content

DOC: Remove Pandas LaTeX examples, because they don't seem to work anymore #279

DOC: Remove Pandas LaTeX examples, because they don't seem to work anymore

DOC: Remove Pandas LaTeX examples, because they don't seem to work anymore #279

Workflow file for this run

name: Build HTML on macOS
on: [push, pull_request]
env:
PIP: python -m pip
SPHINX: python -m sphinx -W --keep-going --color
jobs:
html-macos:
runs-on: macos-latest
steps:
- name: Clone repo
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install pandoc
run: |
brew install pandoc
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3
- name: Double-check Python version
run: |
python --version
- name: Install Python package
run: |
$PIP install .
- name: Install docs dependencies
run: |
$PIP install -r doc/requirements.txt
- name: Build HTML
run: |
$SPHINX doc/ _build/html/