Skip to content

Add PyTorch 2.5 support #2128

Add PyTorch 2.5 support

Add PyTorch 2.5 support #2128

Workflow file for this run

name: Linting
on: # yamllint disable-line rule:truthy
push:
branches:
- master
pull_request:
jobs:
mypy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.9
- name: Install dependencies
run: pip install mypy
- name: Check type hints
continue-on-error: true
run: |
mypy --install-types --non-interactive