Skip to content

Fixes operands could not be broadcast error when the subscripts contain ellipsis and the operands are shapes. #118

Fixes operands could not be broadcast error when the subscripts contain ellipsis and the operands are shapes.

Fixes operands could not be broadcast error when the subscripts contain ellipsis and the operands are shapes. #118

Workflow file for this run

name: Docs
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v5
with:
python-version: 3.x
- name: Install
run: |
pip install -r docs/requirements.yml
pip install -e .
- name: Build Docs
run: mkdocs build
# Only deploy if master, otherwise just build for testing
- name: Deploy
if: endsWith(github.ref, '/master')
run: mkdocs gh-deploy --force