Skip to content

Update numpy requirement from <2,>=1.13.0 to >=1.13.0,<3 #67

Update numpy requirement from <2,>=1.13.0 to >=1.13.0,<3

Update numpy requirement from <2,>=1.13.0 to >=1.13.0,<3 #67

Workflow file for this run

name: PyPy
on: [push, pull_request]
jobs:
pypy:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
toolchain:
- {compiler: gcc, version: 12}
steps:
- uses: actions/checkout@v4
- name: Set up PyPy
uses: actions/setup-python@v5
with:
python-version: 'pypy3.9'
cache: 'pip'
- name: Install dependencies
run: |
pypy3 -m pip install --upgrade pip
pypy3 -m pip install build wheel
pypy3 -m pip install pytest numpy platformdirs cpyparsing
- uses: fortran-lang/setup-fortran@v1
id: setup-fortran
with:
compiler: ${{ matrix.toolchain.compiler }}
version: ${{ matrix.toolchain.version }}
- name: Build
run: pypy3 -m pip install .
- name: Test
run: pypy3 -m pytest -v