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
2 changes: 1 addition & 1 deletion .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
env:
PETSC_ARCH: arch-darwin-c-opt
PETSC_DIR: ${{ github.workspace }}/petsc
PETSC_VERSION: 3.24.0
PETSC_VERSION: 3.24.2
PYTEST_ADDOPTS: "-W error"

steps:
Expand Down
3 changes: 2 additions & 1 deletion cpp/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,8 @@ set_package_properties(
set(HDF5_PREFER_PARALLEL TRUE)
set(HDF5_FIND_DEBUG TRUE)
find_package(HDF5 REQUIRED COMPONENTS C)
if(NOT HDF5_IS_PARALLEL)
# HDF5_IS_PARALLEL -> HDF5_PROVIDES_PARALLEL in HDF5@2.0.0
if (NOT (HDF5_IS_PARALLEL OR HDF5_PROVIDES_PARALLEL))
message(
FATAL_ERROR
"Found serial HDF5, MPI HDF5 build required. Try setting HDF5_DIR or HDF5_ROOT."
Expand Down
2 changes: 1 addition & 1 deletion cpp/cmake/templates/DOLFINXConfig.cmake.in
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ if(NOT TARGET hdf5::hdf5)
set(HDF5_PREFER_PARALLEL TRUE)
set(HDF5_FIND_DEBUG TRUE)
find_dependency(HDF5 COMPONENTS C)
if(HDF5_FOUND AND NOT HDF5_IS_PARALLEL)
if (NOT (HDF5_IS_PARALLEL OR HDF5_PROVIDES_PARALLEL))
message(FATAL_ERROR "Found serial HDF5 build, MPI HDF5 build required")
endif()
endif()
Expand Down
16 changes: 8 additions & 8 deletions docker/Dockerfile.test-env
Original file line number Diff line number Diff line change
Expand Up @@ -14,19 +14,19 @@

ARG ADIOS2_VERSION=2.11.0
ARG DOXYGEN_VERSION=1_14_0
ARG GMSH_VERSION=4_14_0
ARG HDF5_VERSION=1.14.6
ARG KAHIP_VERSION=3.18
ARG GMSH_VERSION=4_15_0
ARG HDF5_VERSION=2.0.0
ARG KAHIP_VERSION=3.21
# NOTE: The NumPy version (https://pypi.org/project/numpy/#history)
# should be pinned to the most recent NumPy release that is supported by
# the most recent Numba release, see
# https://numba.readthedocs.io/en/stable/user/installing.html#version-support-information
ARG NUMPY_VERSION=2.2.6
ARG PETSC_VERSION=3.24.0
ARG SLEPC_VERSION=3.24.0
ARG SPDLOG_VERSION=1.15.3
ARG NUMPY_VERSION=2.3.5
ARG PETSC_VERSION=3.24.2
ARG SLEPC_VERSION=3.24.1
ARG SPDLOG_VERSION=1.16.0

ARG MPICH_VERSION=4.3.1
ARG MPICH_VERSION=4.3.2
ARG OPENMPI_SERIES=5.0
ARG OPENMPI_PATCH=8

Expand Down
Loading