Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
113 changes: 0 additions & 113 deletions .github/workflows/wheels.yml

This file was deleted.

2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ add_library(mpistub SHARED ${MPI_STUB_SOURCES})
set_target_properties(mpistub PROPERTIES
OUTPUT_NAME "mpi"
VERSION "1.0.0"
SOVERSION "1"
SOVERSION "12"
C_STANDARD 11
C_STANDARD_REQUIRED YES
)
Expand Down
3 changes: 3 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,9 @@ RUN python3 -m venv ${VIRTUAL_ENV} && \
RUN env MPICC="${STUBS_DIR}/bin/mpicc" \
pip install --no-cache-dir --no-build-isolation --no-binary mpi4py mpi4py

RUN python3 -c "from mpi4py import MPI; print(MPI.Get_version())" && \
python3 -c "import numpy; print(numpy.__version__)"

# --- 4. System Libraries (Spdlog, Doxygen, KaHIP, HDF5, ADIOS2, GMSH) ---
RUN wget -nc --quiet https://github.com/gabime/spdlog/archive/refs/tags/v${SPDLOG_VERSION}.tar.gz && \
tar xfz v${SPDLOG_VERSION}.tar.gz && \
Expand Down
Loading
Loading