Skip to content

Update to numpy 2

Update to numpy 2 #3

name: Run numpy 2<->1 compatibility
on:
pull_request:
branches:
- '*'
jobs:
run:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
python-version: ["3.10"]
steps:
- uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install packages
run: |
pip install numpy==1.26
pip install pytest
pip install -e .
pip install -r requirements-test.txt
pytest