Merge pull request #173 from ev-br/py314_on_ci #519
This file contains hidden or 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: Tests | |
| on: [push, pull_request] | |
| jobs: | |
| tests: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: ['3.10', '3.11', '3.12', '3.13', '3.14'] | |
| numpy-version: ['1.26', '2.3.5', 'dev'] | |
| exclude: | |
| - python-version: '3.10' | |
| numpy-version: '2.3.5' | |
| - python-version: '3.10' | |
| numpy-version: 'dev' | |
| - python-version: '3.13' | |
| numpy-version: '1.26' | |
| - python-version: '3.14' | |
| numpy-version: '1.26' | |
| fail-fast: false | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install Dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| if [[ "${{ matrix.numpy-version }}" == "dev" ]]; then | |
| python -m pip install --pre --extra-index https://pypi.anaconda.org/scientific-python-nightly-wheels/simple numpy; | |
| else | |
| python -m pip install 'numpy=='${{ matrix.numpy-version }} | |
| fi | |
| python -m pip install pytest hypothesis | |
| python -c'import numpy as np; print(f"{np.__version__ = }")' | |
| - name: Run Tests | |
| run: | | |
| pytest | |
| # Make sure it installs | |
| pip install . |