-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support zlib (#2), bump libdeflate version, add python stdlib roundtr…
…ip tests
- Loading branch information
Showing
5 changed files
with
115 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
.PHONY: clean format test | ||
|
||
clean: | ||
rm -rf *.so deflate.egg-info build | ||
|
||
format: | ||
clang-format -i deflate.c | ||
black tests | ||
isort tests | ||
|
||
test: clean | ||
pip install -e . | ||
pytest |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule libdeflate
updated
14 files
+1 −1 | .cirrus.yml | |
+15 −11 | .github/workflows/ci.yml | |
+1 −1 | CMakeLists.txt | |
+21 −0 | NEWS.md | |
+6 −0 | README.md | |
+285 −206 | lib/deflate_compress.c | |
+68 −32 | lib/deflate_decompress.c | |
+8 −4 | lib/lib_common.h | |
+12 −22 | lib/utils.c | |
+42 −56 | lib/x86/cpu_features.c | |
+10 −0 | lib/x86/cpu_features.h | |
+66 −23 | libdeflate.h | |
+83 −13 | programs/test_custom_malloc.c | |
+9 −21 | scripts/gen_offset_slot_map.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters