For recordings with frame > (2 ** 31 - 1), data type of two variables in in prepare_spikesortingview_data need to change from np.int32 to np.int64. #28
Workflow file for this run
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: pyright_check | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
name: Pyright check | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install | |
run: pip install . | |
- name: Install pyright | |
run: pip install --upgrade pyright | |
- name: Install other | |
run: pip install pyvips | |
- name: Run pyright | |
run: pyright |