Drop NumPy < 1.22.4 #756
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: NeoCoreTest | |
on: | |
pull_request: | |
branches: [master] | |
types: [synchronize, opened, reopened, ready_for_review] | |
paths: | |
- 'neo/core/**' | |
- 'pyproject.toml' | |
- '.github/workflows/*.yml' | |
# run checks on any change of master, including merge of PRs | |
push: | |
branches: [master] | |
concurrency: # Cancel previous workflows on the same pull request | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
multi-os-python-numpy: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: true | |
matrix: | |
os: ["ubuntu-latest", "windows-latest"] | |
# "macos-latest", | |
python-version: ['3.9', '3.10', '3.11', '3.12'] | |
numpy-version: ['1.22.4', '1.23.5', '1.24.1', '1.25.1', '1.26.4'] | |
exclude: | |
- python-version: '3.12' | |
numpy-version: '1.22.4' | |
- python-version: '3.12' | |
numpy-version: '1.23.5' | |
- python-version: '3.12' | |
numpy-version: '1.24.1' | |
- python-version: '3.12' | |
numpy-version: '1.25.1' | |
steps: | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Install numpy ${{ matrix.numpy-version }} | |
run: | | |
python -m pip install --upgrade pip | |
pip install numpy==${{ matrix.numpy-version }} | |
pip install pytest pytest-cov | |
pip install . | |
- name: List pip packages | |
run: | | |
pip -V | |
pip list | |
- name: Run tests | |
run: | | |
pytest --cov=neo neo/test/coretest |