Skip to content

Commit c967697

Browse files
Remove packaging dependency
Closes #323
1 parent f6a0434 commit c967697

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

bio2zarr/zarr_utils.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
import zarr
2-
from packaging.version import Version
32

43

54
def zarr_v3() -> bool:
6-
return Version(zarr.__version__).major >= 3
5+
return zarr.__version__ >= "3"
76

87

98
if zarr_v3():

pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ dependencies = [
2323
# colouredlogs pulls in humanfriendly",
2424
"cyvcf2",
2525
"bed_reader",
26-
"packaging",
2726
]
2827
requires-python = ">=3.9"
2928
classifiers = [

0 commit comments

Comments
 (0)