Skip to content

Moved colormaps to graph.py, removed style.py #197

Moved colormaps to graph.py, removed style.py

Moved colormaps to graph.py, removed style.py #197

Workflow file for this run

name: docs
on: [push, pull_request]
jobs:
build-docs:
name: Build and generate docs
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Python 3.10
uses: actions/setup-python@v2
with:
python-version: '3.10'
- name: Build docs
run: |
sudo apt-get install pandoc
pip install --upgrade -r requirements_docs.txt
pip install --upgrade .[all]
mkdir docs_build
sphinx-build -nW -b html docs docs_build