You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Exported the converter from chunk shape to a SimpleGrid. Also explained the various choices for the cost factor, now that we have to document the converter's arguments.
Added buffer_size= option to apply_over_* functions for convenience. This just gets passed along to the block size/shape chooser functions if the block size/shape is not explicitly supplied to the apply* function. Also renamed memory= to buffer_size as it is more self-explanatory.
Support masking throughout the various operations and methods. (#57) This preserves masks throughout each operation, and introduces an 'is_masked' generic to allow callers to determine whether there might be masked values during the extraction process.
Fixes to support Python 3.8 (#55) - Switch list to List annotation from typing - Use the package installed utility function - Update GitHub action to run tests from Python 3.8 - 3.12