unpin zarr max version (#72) #73
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Documentation | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
docs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
# We use https://pypi.org/project/setuptools-scm/ for dynamic lib versioning | |
# Without our tagged versions, it defaults to 0.1.dev* | |
fetch-tags: true | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.11" | |
- uses: extractions/setup-just@v2 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Install Dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install .[docs] | |
- name: Generate Docs | |
run: | | |
gitchangelog | |
just generate-docs | |
touch docs/_build/.nojekyll | |
- name: Publish Docs | |
uses: JamesIves/github-pages-deploy-action@v4 | |
with: | |
folder: docs/_build/ |