Skip to content

bump torch python

bump torch python #649

Workflow file for this run

name: Running tests (avoid slow)
on:
push:
jobs:
run:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
env:
OS: ${{ matrix.os }}
PYTHON: '3.11'
steps:
- uses: actions/checkout@main
- name: Setup Python
uses: actions/setup-python@main
with:
python-version: 3.11
- name: Run tests
run: |
pip install .
pip install pytest
pip install pytest-cov
pytest .