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

Preliminary version of Blosc2 module #463

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions .flake8
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ exclude =
adhoc,
build,
c-blosc,
c-blosc2,
dist,
docs,
fixture,
Expand Down
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
[submodule "c-blosc"]
path = c-blosc
url = https://github.com/Blosc/c-blosc.git
[submodule "c-blosc2"]
path = c-blosc2
url = https://github.com/Blosc/c-blosc2.git
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
recursive-include c-blosc *
recursive-include c-blosc2 *
recursive-include numcodecs *.pyx
recursive-include numcodecs *.pxd
include numcodecs/tests/package_with_entrypoint-0.1.dist-info/entry_points.txt
1 change: 1 addition & 0 deletions c-blosc2
Submodule c-blosc2 added at 34b273
2 changes: 1 addition & 1 deletion numcodecs/blosc.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ def cbuffer_complib(source):

def cbuffer_metainfo(source):
"""Return some meta-information about the compressed buffer in `source`, including
the typesize, whether the shuffle or bit-shuffle filters were used, and the
the typesize, whether the shuffle or bit-shuffle filters were used, and
whether the buffer was memcpyed.

Returns
Expand Down
Loading