diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst index 482ffd754..33525f9b2 100644 --- a/docs/source/changelog.rst +++ b/docs/source/changelog.rst @@ -1,6 +1,11 @@ Changelog ========= +2025.3.2 +-------- + +- drop support for py3.8 + 2025.3.1 -------- diff --git a/fsspec/caching.py b/fsspec/caching.py index 3be267626..b49699547 100644 --- a/fsspec/caching.py +++ b/fsspec/caching.py @@ -37,7 +37,7 @@ logger = logging.getLogger("fsspec") Fetcher = Callable[[int, int], bytes] # Maps (start, end) to bytes -MultiFetcher = Callable[list[[int, int]], bytes] # Maps [(start, end)] to bytes +MultiFetcher = Callable[[list[int, int]], bytes] # Maps [(start, end)] to bytes class BaseCache: