Minimal, reproducible code sample
import numcodecs
codec = numcodecs.get_codec({"id": "bitround", "keepbits": 16})
fails with ValueError: codec not available: 'bitround' while
import numcodecs
from numcodecs.bitround import BitRound
numcodecs.register_codec(BitRound, codec_id="bitround")
codec = numcodecs.get_codec({"id": "bitround", "keepbits": 16})
is ok.
Problem description
BitRound is not yet properly registered: not sure if this is by pourpose or a minor glitch....
Version and installation information
Please provide the following:
- Value of
numcodecs.__version__: 0.10.1
- Version of Python interpreter: 3.10.4
- Operating system (Linux/Windows/Mac): Linux/Mac
- How NumCodecs was installed: "using pip into virtual environment"
Minimal, reproducible code sample
fails with
ValueError: codec not available: 'bitround'whileis ok.
Problem description
BitRoundis not yet properly registered: not sure if this is by pourpose or a minor glitch....Version and installation information
Please provide the following:
numcodecs.__version__:0.10.1