Skip to content

fix: Restore PyTorch 2.11 compatibility #22

fix: Restore PyTorch 2.11 compatibility

fix: Restore PyTorch 2.11 compatibility #22

Workflow file for this run

name: Pyright Type Checking
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
pyright:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install dependencies
run: |
pip install .[dev]
- name: Run pyright
run: pyright
env:
FORCE_COLOR: "1"