-
Notifications
You must be signed in to change notification settings - Fork 25
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
Added BZip2 compression filter #182
Conversation
git-subtree-dir: src/bzip2 git-subtree-split: 75a94bea3918e612b879d6a11ca64b8689526147
@@ -0,0 +1,28 @@ | |||
/* |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This extra code is needed to make the filter a "plugin".
Let's keep this as a Draft PR for now, and wait for an effective need to add it to |
For easy-to-handle filters I do not mind to add them to the code repository. If PyTables uses it, I would add it. |
OK, up to you then! |
This PR adds the BZip2 compression filter from
PyTables
tohdf5plugin
.It also updates slightly the contribution documentation.
I didn't use
git subtree
for PyTables, instead I copy-pasted the 3 relevant files while keeping the same folder structure. As we add filters, we're also adding a lot of useless files, so maybe time to change the strategy of embedding everything, what do you think of this?I'm also missing a hdf5 file with bzip2 compression that was produced by another tool.
Related to #110