From 458d6e30bc919b148ecf04e5788e23d14c3824b4 Mon Sep 17 00:00:00 2001 From: SeanLeRoy Date: Thu, 19 Oct 2023 13:31:50 -0700 Subject: [PATCH] Limit fsspec version for now --- pyproject.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 5f283db..962d9a8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -29,7 +29,9 @@ dynamic = ["version"] dependencies = [ "bioio-base>=0.3.0", "dask[array]>=2021.4.1", - "fsspec>=2022.8.0", + # fssspec restricted due to glob issue tracked here, when fixed remove ceiling + # https://github.com/fsspec/filesystem_spec/issues/1380 + "fsspec>=2022.8.0,<2023.9.0", "numpy>=1.16,<2", "PyYAML>=6.0", "xarray>=0.16.1",