Skip to content

Remove 313 compaitibility #186

Remove 313 compaitibility

Remove 313 compaitibility #186

Workflow file for this run

name: Compatibility
on: [push]
jobs:
pytest:
runs-on: ubuntu-latest
env:
UV_SYSTEM_PYTHON: 1
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Setup UV
run: |
pip install --upgrade pip
pip install uv
- name: Install requirements
run: uv pip install .[test] --extra-index-url https://download.pytorch.org/whl/cpu
- name: Test with pytest
run: pytest tests -vv