Skip to content

Update numpy requirement from ~=2.1 to ~=2.2 #286

Update numpy requirement from ~=2.1 to ~=2.2

Update numpy requirement from ~=2.1 to ~=2.2 #286

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python:
- '3.10'
- '3.11'
- '3.12'
torch:
- '2.4'
name: Python ${{ matrix.python }}, Torch ${{ matrix.torch }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: Install dependencies
run: pip3 install -r requirements.txt
- name: Install torch
run: pip3 install --upgrade torch~=${{ matrix.torch }}
- name: Run Black
run: black . --check
- name: Run pyright
uses: jakebailey/[email protected]
- name: Run pytest
run: |
export PYTHONPATH=$(pwd)
pytest test