We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f6a0434 commit c967697Copy full SHA for c967697
bio2zarr/zarr_utils.py
@@ -1,9 +1,8 @@
1
import zarr
2
-from packaging.version import Version
3
4
5
def zarr_v3() -> bool:
6
- return Version(zarr.__version__).major >= 3
+ return zarr.__version__ >= "3"
7
8
9
if zarr_v3():
pyproject.toml
@@ -23,7 +23,6 @@ dependencies = [
23
# colouredlogs pulls in humanfriendly",
24
"cyvcf2",
25
"bed_reader",
26
- "packaging",
27
]
28
requires-python = ">=3.9"
29
classifiers = [
0 commit comments