Skip to content

meson 9

meson 9 #143

Workflow file for this run

name: build-linux
on:
push:
branches:
- main
release:
types:
- published
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12', 'pypy3.8', 'pypy3.9', 'pypy-3.10']
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
# Install BLAS, since pypy compiles numpy and scipy from source and requires BLAS.
- name: Install prerequisites
run: sudo apt-get install gfortran libopenblas-dev liblapack-dev
- name: Install package and dependencies
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade numpy
python -m pip install . -vvv
- name: Test
run: |
python -m pip install --upgrade pytest
python -m pip install --upgrade pytest-cov
python -m pip install --prefer-binary -r tests/requirements.txt
mv special_functions special_functions_do_not_import
pytest