We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 85b68cb commit d27f050Copy full SHA for d27f050
5 files changed
README.md
@@ -6,10 +6,11 @@ experimental Ruby bindings for the HDF5 library
6
7
## Supported HDF5 Versions
8
9
+- HDF5 1.10
10
- HDF5 1.14
11
- HDF5 2.x
12
-HDF5 1.10 and older are not supported.
13
+HDF5 versions older than 1.10 are not supported.
14
15
## Basic I/O
16
lib/hdf5/ffi.rb
@@ -44,6 +44,8 @@ def self.attach_variable(*)
44
release = release_ptr.read_uint
45
46
@backend = case [major, minor]
47
+ in [1, 10..13]
48
+ 'ffi_10'
49
in [1, 14..]
50
'ffi_14'
51
in [2.., _]
0 commit comments