Skip to content
Open
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
4 changes: 2 additions & 2 deletions recipes/recipes_emscripten/h5py/patches/configure.patch
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ index c16ddeef..1180d3fa 100644

def __init__(self, libdirs):
- self._load_hdf5_lib(libdirs)
+ pass
+ print("in init");import ctypes;ctypes.CDLL("/lib/libhdf5.so");ctypes.CDLL("/lib/libhdf5_hl.so");

def _load_hdf5_lib(self, libdirs):
"""
Expand Down Expand Up @@ -61,4 +61,4 @@ index c16ddeef..1180d3fa 100644
def has_direct_vfd_support(self):
return self.has_functions("H5Pget_fapl_direct", "H5Pset_fapl_direct")
--
2.35.1
2.35.1
4 changes: 2 additions & 2 deletions recipes/recipes_emscripten/h5py/recipe.yaml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
context:
name: h5py
version: 3.15.1
version: 3.16.0

package:
name: ${{ name }}
version: ${{ version }}

source:
url: https://pypi.io/packages/source/${{ name[0] }}/${{ name }}/${{ name }}-${{ version }}.tar.gz
sha256: c86e3ed45c4473564de55aa83b6fc9e5ead86578773dfbd93047380042e26b69
sha256: a0dbaad796840ccaa67a4c144a0d0c8080073c34c76d5a6941d6818678ef2738
patches:
- patches/configure.patch

Expand Down
Loading