From d946e3168398c95d5d33249d1184a5177d23011d Mon Sep 17 00:00:00 2001 From: SeanLeRoy Date: Mon, 30 Oct 2023 10:54:39 -0700 Subject: [PATCH] Revert removal of fsspec limitation --- setup.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index bfd31718e..e99487a12 100644 --- a/setup.py +++ b/setup.py @@ -101,7 +101,9 @@ def run(self): requirements = [ "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", "imagecodecs>=2020.5.30", "lxml>=4.6,<5", "numpy>=1.21.0",