Skip to content

fix version pinning

fix version pinning #4

Workflow file for this run

name: Test
on:
push:
paths-ignore:
- README.md
- .gitignore
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
pytorch-version: ["1.13.*", "2.0.*"]
python-version: ["3.10"]
include:
- pytorch-version: "1.13.*"
torchvision-version: "0.14.*"
- pytorch-version: "2.0.*"
torchvision-version: "0.15.*"
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install torch==${{ matrix.pytorch-version }} torchvision==${{ matrix.torchvision-version }} --extra-index-url https://download.pytorch.org/whl/cpu
pip install pytest
- name: Run tests
run: python -m pytest -v