Skip to content

FIX np.NaN is not available anymore in numpy2.0 #21

FIX np.NaN is not available anymore in numpy2.0

FIX np.NaN is not available anymore in numpy2.0 #21

Workflow file for this run

name: Test suite
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: ["3.8", "3.9", "3.10"]
steps:
- name: Checkout repo
uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install
run: |
python -m pip install --upgrade pip
pip install .
pip install pytest-parallel scikit-image coveralls coverage pytest-cov scikit-learn h5py Pillow pip-conflict-checker py
- name: Check Dependencies
run: |
pipconflictchecker
- name: Lint
run: |
flake8 --ignore N802,N806,W503 --select W504 `find . -name \*.py | grep -v setup.py | grep -v __init__.py | grep -v /doc/`
- name: Test
run: |
pytest --cov-report term-missing --cov=copt