Skip to content

Restrict numpy version to <2.0 in dependencies #139

Restrict numpy version to <2.0 in dependencies

Restrict numpy version to <2.0 in dependencies #139

Workflow file for this run

name: Unit Tests
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
fail-fast: false
matrix:
python-version: ['3.10', '3.11', '3.12', '3.13']
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
uses: astral-sh/setup-uv@v7
- name: Install the project
run: uv sync --locked --all-extras --all-groups
- name: Run tests
run: uv run pytest -vv -m "not remote"