Skip to content

bump chempy, pint, NumPy and Numba CI-time requirements. closes #1344 #1334

bump chempy, pint, NumPy and Numba CI-time requirements. closes #1344

bump chempy, pint, NumPy and Numba CI-time requirements. closes #1344 #1334

Workflow file for this run

name: pdoc
defaults:
run:
shell: bash
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
schedule:
- cron: '0 13 * * 4'
jobs:
pdoc:
strategy:
matrix:
platform: [ ubuntu-latest, macos-13, windows-latest ]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v4.1.6
with:
submodules: recursive
persist-credentials: false
- uses: actions/setup-python@v5.0.0
with:
python-version: "3.12"
- run: |
pip install pdoc nbformat
pip install -e .
pip install -e examples
python -We .github/workflows/docs.py . .
- if: ${{ github.ref == 'refs/heads/main' && matrix.platform == 'ubuntu-latest' }}
uses: JamesIves/github-pages-deploy-action@4.1.1
with:
branch: pdoc
folder: html
clean: true