Fix numpy v2 breaking changes #68
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: Tests | |
on: | |
pull_request: | |
branches: | |
- master | |
push: | |
branches: | |
- master | |
env: | |
PIP_DISABLE_PIP_VERSION_CHECK: '1' | |
PY_COLORS: '1' | |
jobs: | |
test: | |
runs-on: ${{ matrix.platform }} | |
strategy: | |
fail-fast: false | |
matrix: | |
platform: | |
- ubuntu-latest | |
- macos-latest | |
- windows-latest | |
python-version: | |
- '3.9' | |
- '3.10' | |
- '3.11' | |
- '3.12' | |
- pypy-3.9 | |
- pypy-3.10 | |
# TODO: bring this back later | |
exclude: | |
- platform: windows-latest | |
python-version: 'pypy-3.10' | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5.1.1 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install Python build tools | |
run: python -m pip install tox wheel | |
- name: Run tests | |
run: python -m tox run -e py | |
- name: Install Scipy prerequisites for Ubuntu | |
if: startsWith(matrix.platform, 'ubuntu') | |
run: sudo apt-get install libopenblas-dev | |
- name: Run tests with scipy | |
if: startsWith(matrix.platform, 'ubuntu') || startsWith(matrix.python-version, 'pypy') != true | |
run: python -m tox run -e py-scipy |