Skip to content

Bump torch from 2.4.1 to 2.5.1 #1673

Bump torch from 2.4.1 to 2.5.1

Bump torch from 2.4.1 to 2.5.1 #1673

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Python package
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
uses: snok/install-poetry@v1
with:
virtualenvs-create: true
virtualenvs-in-project: true
- name: Install dependencies
run: |
poetry install -E test
- name: Lint with ruff
run: |
# stop the build if linting fails
poetry run ruff check --respect-gitignore .
- name: Check style with Black
run: |
# check for formatting errors
poetry run black -q --check --diff .
- name: Type checking with pyright
run: |
poetry run pyright --pythonversion ${{ matrix.python-version }} .
- name: Test with pytest
run: |
poetry run pytest --cov=./
- name: "Upload coverage to Codecov"
uses: codecov/codecov-action@v5
with:
fail_ci_if_error: false