We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8228196 + c895a15 commit 0275bcfCopy full SHA for 0275bcf
ebcc/zarr_filter.py
@@ -20,14 +20,6 @@ class EBCCZarrFilter(Codec):
20
21
def __init__(self, arglist):
22
self.arglist = np.array(arglist, dtype=np.uint32)
23
- if sys.platform.startswith('linux'):
24
- self.c_stdlib = ctypes.CDLL('libc.so.6')
25
- elif sys.platform == 'darwin':
26
- self.c_stdlib = ctypes.CDLL('libc.dylib')
27
- elif sys.platform == 'win32':
28
- self.c_stdlib = ctypes.CDLL('msvcrt.dll')
29
- else:
30
- raise RuntimeError("Unsupported platform: " + sys.platform)
31
self.lib = ctypes.CDLL(EBCC_FILTER_PATH)
32
self.lib.populate_config.argtypes = [
33
ctypes.POINTER(CodecConfigT),
0 commit comments