Skip to content

Update torchvision requirement from ~=0.19 to ~=0.20 #276

Update torchvision requirement from ~=0.19 to ~=0.20

Update torchvision requirement from ~=0.19 to ~=0.20 #276

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/pyright-action@v2.3.2
- name: Run pytest
run: |
export PYTHONPATH=$(pwd)
pytest test