We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 943f787 + ea1757d commit d9b7af5Copy full SHA for d9b7af5
3 files changed
Dockerfile
@@ -59,6 +59,9 @@ RUN python3 -m venv ${VIRTUAL_ENV} && \
59
RUN env MPICC="${STUBS_DIR}/bin/mpicc" \
60
pip install --no-cache-dir --no-build-isolation --no-binary mpi4py mpi4py
61
62
+RUN python3 -c "from mpi4py import MPI; print(MPI.Get_version())" && \
63
+ python3 -c "import numpy; print(numpy.__version__)"
64
+
65
# --- 4. System Libraries (Spdlog, Doxygen, KaHIP, HDF5, ADIOS2, GMSH) ---
66
RUN wget -nc --quiet https://github.com/gabime/spdlog/archive/refs/tags/v${SPDLOG_VERSION}.tar.gz && \
67
tar xfz v${SPDLOG_VERSION}.tar.gz && \
0 commit comments