Skip to content
Merged
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
2 changes: 2 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ dependencies = [
# across numpy 1 and 2 (due to pickle format)
"numpy >= 1.26",
"zarr >= 2.17,< 3",
# Pinning numcodecs due to https://github.com/zarr-developers/zarr-python/issues/2963
"numcodecs[msgpack]!=0.14.0,!=0.14.1,<0.16",
"click",
"tabulate",
"tqdm",
Expand Down
2 changes: 1 addition & 1 deletion tests/test_vcf_examples.py
Original file line number Diff line number Diff line change
Expand Up @@ -1105,7 +1105,7 @@ def test_split_explode(tmp_path):
pcvcf = vcf2zarr.IntermediateColumnarFormat(out)
summary_d = pcvcf.fields["POS"].vcf_field.summary.asdict()
# The compressed size can vary with different numcodecs versions
assert summary_d["compressed_size"] == 571 or summary_d["compressed_size"] == 587
assert summary_d["compressed_size"] in [571, 573, 587]
del summary_d["compressed_size"]
assert summary_d == {
"num_chunks": 3,
Expand Down