From c7ba3350de611c68d175561f1ac1691aa645a9d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mario=20=C5=A0a=C5=A1ko?= Date: Wed, 30 Aug 2023 15:51:31 +0200 Subject: [PATCH] Set minimal fsspec version requirement to 2023.1.0 (#6192) * Set minimal fsspec version requirement to 2023.1.0 * Oops :) --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 85eec2233b2..f7c51bf802f 100644 --- a/setup.py +++ b/setup.py @@ -125,8 +125,8 @@ # for better multiprocessing "multiprocess", # to save datasets locally or on any filesystem - # minimum 2022.3.0 so that TqdmCallback is available: see https://github.com/fsspec/filesystem_spec/pull/931 - "fsspec[http]>=2022.3.0", + # minimum 2023.1.0 to support protocol=kwargs in fsspec's `open`, `get_fs_token_paths`, etc.: see https://github.com/fsspec/filesystem_spec/pull/1143 + "fsspec[http]>=2023.1.0", # for data streaming via http "aiohttp", # To get datasets from the Datasets Hub on huggingface.co