Skip to content

Deal with mpi4py v4.1 no longer having IN_PLACE be an int instance #20

Deal with mpi4py v4.1 no longer having IN_PLACE be an int instance

Deal with mpi4py v4.1 no longer having IN_PLACE be an int instance #20

Workflow file for this run

name: MockMPI CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest, macos-latest ]
py: [ 3.12, 3.13 ]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.py }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.py }}
- name: Cache pip
uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-${{ matrix.py }}-pip-${{ hashFiles('requirements.txt') }}
restore-keys: |
${{ runner.os }}-${{ matrix.py }}-pip-
${{ runner.os }}-
- name: Install basic dependencies
run: |
python -m pip install -U pip
pip install -U numpy pytest
- name: Run Tests
run: |
export PYTHONPATH=$PWD:$PYTHONPATH
pytest