Skip to content

Fix: Correct mismatched datetime resolution with pd.date_range (#243) #89

Fix: Correct mismatched datetime resolution with pd.date_range (#243)

Fix: Correct mismatched datetime resolution with pd.date_range (#243) #89

Workflow file for this run

name: Documentation
on:
push:
branches: [main]
jobs:
make-pages:
runs-on: ubuntu-latest
permissions:
pages: write
id-token: write
steps:
- uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: 3.13
- name: Install dependencies
run: |
pip install --upgrade pip
pip install ".[docs]"
- name: Build the documentation
run: |
jupyter-book build docs
- name: Upload artifact
uses: actions/upload-pages-artifact@v5
with:
path: "docs/_build/html"
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4