Skip to content

Commit

Permalink
Cap libmpich-dev under 4.2
Browse files Browse the repository at this point in the history
Signed-off-by: sfc-gh-mvashishtha <mahesh.vashishtha@snowflake.com>
  • Loading branch information
sfc-gh-mvashishtha committed Jan 15, 2025
1 parent a0d0569 commit 0aea0ae
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,9 +116,11 @@ jobs:
MODIN_ENGINE=dask python -c "import modin.pandas as pd; print(pd.DataFrame([1,2,3]))"
MODIN_ENGINE=ray python -c "import modin.pandas as pd; print(pd.DataFrame([1,2,3]))"
- name: Ensure MPI engine start up
# Install a working MPI implementation beforehand so mpi4py can link to it
# Install a working MPI implementation beforehand so mpi4py can link to it.
# Cap libmpich-dev under version 4.2, which does not seem to work:
# https://github.com/modin-project/modin/issues/7419
run: |
sudo apt install libmpich-dev
sudo apt install libmpich-dev<4.2
python -m pip install -e ".[mpi]"
MODIN_ENGINE=unidist UNIDIST_BACKEND=mpi mpiexec -n 1 python -c "import modin.pandas as pd; print(pd.DataFrame([1,2,3]))"
if: matrix.os == 'ubuntu'
Expand Down

0 comments on commit 0aea0ae

Please sign in to comment.