From ff5c25eefd85b893f0d236f2ec606d0a5642e9ed Mon Sep 17 00:00:00 2001 From: Jordan Henderson Date: Thu, 19 Oct 2023 14:38:15 -0500 Subject: [PATCH] Update requirements to HDF5 1.14.0 rather than 1.13.0 --- CMakeLists.txt | 4 ++-- README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index bf9a59b67..e1174f49d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -95,7 +95,7 @@ set(HDF5_VFD_GDS_EXT_LIB_DEPENDENCIES #------------------------------------------------------------------------------ # Locate HDF5 #------------------------------------------------------------------------------ -find_package(HDF5 1.13.0 NO_MODULE NAMES hdf5 COMPONENTS C shared) +find_package(HDF5 1.14.0 NO_MODULE NAMES hdf5 COMPONENTS C shared) if(HDF5_FOUND) set(HDF5_C_SHARED_LIBRARY hdf5-shared) if(NOT TARGET ${HDF5_C_SHARED_LIBRARY}) @@ -109,7 +109,7 @@ if(HDF5_FOUND) set(HDF5_VFD_GDS_USE_SYSTEM_CMAKE_HDF5 1) else() # Allow for HDF5 autotools builds - find_package(HDF5 1.13.0 MODULE REQUIRED) + find_package(HDF5 1.14.0 MODULE REQUIRED) set(HDF5_VFD_GDS_EXT_INCLUDE_DEPENDENCIES ${HDF5_VFD_GDS_EXT_INCLUDE_DEPENDENCIES} ${HDF5_INCLUDE_DIRS} diff --git a/README.md b/README.md index 89656e1d6..6e1834b34 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ built as a plugin library that is external to HDF5. To build the GDS VFD, the following libraries are required: + `libhdf5` - The [HDF5](https://www.hdfgroup.org/downloads/hdf5/) library. - Minimum version required is 1.13.0. HDF5 must be compiled with + Minimum version required is 1.14.0. HDF5 must be compiled with support for parallel I/O if building the GDS VFD's tests. Shared libraries must be enabled if loading the GDS VFD as an HDF5 plugin.