Skip to content
Snippets Groups Projects
Commit a3e12841 authored by payno's avatar payno
Browse files

setup.cfg: fix requirements for python 3.8

parent 4b41dfbf
No related branches found
No related tags found
1 merge request!240setup.cfg: fix requirements for python 3.8
Pipeline #204047 failed
......@@ -43,9 +43,11 @@ full =
glymur
imageio
tqdm
tifffile[zarr]>=2023.7.4
zarr # the zarr extra requirement as been added on july 2024 only
fsspec # the zarr extra requirement as been added on july 2024 only
tifffile[zarr]>=2023.7.4; python_version >= '3.10'
# the zarr extra requirement as been added on july 2024 only and for python 3.10 or higher
tifffile; python_version < '3.10'
zarr; python_version < '3.10'
fsspec; python_version < '3.10'
test =
%(full)s
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment