Skip to content

migate from setup.py to pyproject.toml & bump tox & declare support for python 3.12 #9

migate from setup.py to pyproject.toml & bump tox & declare support for python 3.12

migate from setup.py to pyproject.toml & bump tox & declare support for python 3.12 #9

Workflow file for this run

name: Docs
on: [push, pull_request]
jobs:
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
cache: 'pip'
cache-dependency-path: 'docs/requirements.txt'
- name: Install dependencies
run: pip install -r docs/requirements.txt
- name: Build docs
run: |
cd docs
make html