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
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# 0.1.3 2025-03-04

- Fix missing dependency issue for packaging

- Support out-of-order field definitions in the VCF header (#322, @ACEnglish)

# 0.1.2 2025-02-04

- Reduce memory requirement for encoding genotypes with large sample sizes
Expand All @@ -20,7 +26,7 @@ Breaking changes

Maintenance release:

- Pin numpy to < 2
- Pin numpy to < 2
- Pin Zarr to < 3

# 0.1.0 2024-06-10
Expand Down
3 changes: 1 addition & 2 deletions bio2zarr/zarr_utils.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
import zarr
from packaging.version import Version


def zarr_v3() -> bool:
return Version(zarr.__version__).major >= 3
return zarr.__version__ >= "3"


if zarr_v3():
Expand Down
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ dependencies = [
# colouredlogs pulls in humanfriendly",
"cyvcf2",
"bed_reader",
"packaging",
]
requires-python = ">=3.9"
classifiers = [
Expand Down