We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
[msgpack]
numcodecs
1 parent 9f5a110 commit 29282fcCopy full SHA for 29282fc
pyproject.toml
@@ -24,10 +24,11 @@ requires-python = ">=3.10"
24
dependencies = [
25
'asciitree',
26
'numpy>=1.24',
27
- 'fasteners',
28
- 'numcodecs>=0.10.0',
29
- 'crc32c',
30
- 'zstandard',
+ 'fasteners; sys_platform != "emscripten"',
+ # 'numcodecs[msgpack]>=0.10.0; sys_platform != "emscripten"', # does not currently work
+ 'numcodecs[msgpack]>=0.10.0', # this works
+ 'crc32c', # not available in Pyodide, have to see if we can make it optional for Pyodide
31
+ 'zstandard', # not available in Pyodide, have to see if we can make it optional for Pyodide
32
'typing_extensions',
33
'donfig'
34
]
0 commit comments