Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Installation on Windows without HDF5 headers #120

Merged
merged 2 commits into from
Nov 25, 2022
Merged
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
12 changes: 11 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,17 @@ def pkgconfig(*packages, **kw):
)


EXTENSIONS = [ext_bshuf, h5filter]
EXTENSIONS = [ext_bshuf, ]

# Check for HDF5 support
HDF5_FILTER_SUPPORT = False
CPATHS = os.environ["CPATH"].split(":") if "CPATH" in os.environ else []
for p in ["/usr/include"] + pkgconfig("hdf5")["include_dirs"] + CPATHS:
if os.path.exists(os.path.join(p, "hdf5.h")):
HDF5_FILTER_SUPPORT = True

if HDF5_FILTER_SUPPORT:
EXTENSIONS.append(h5filter)

# For enabling ZSTD support when building wheels
if "ENABLE_ZSTD" in os.environ:
Expand Down