From 67ea776c2a7a7039fba66fccd935366ed9bbc8a9 Mon Sep 17 00:00:00 2001 From: bolkedebruin Date: Mon, 11 Mar 2024 09:04:58 +0100 Subject: [PATCH] Allow fsspec up to 2025.1 (#510) fsspec uses calendar versioning in which case the limit might not even make sense. Bumping it to another year, but you might want to consider removing the upper bound. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 52c60d9482..dcb65f7c5d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -54,7 +54,7 @@ rich = ">=10.11.0,<14.0.0" strictyaml = ">=1.7.0,<2.0.0" # CVE-2020-14343 was fixed in 5.4. pydantic = ">=2.0,<3.0,!=2.4.0,!=2.4.1" # 2.4.0, 2.4.1 has a critical bug sortedcontainers = "2.4.0" -fsspec = ">=2023.1.0,<2024.1.0" +fsspec = ">=2023.1.0,<2025.1.0" pyparsing = ">=3.1.0,<4.0.0" zstandard = ">=0.13.0,<1.0.0" tenacity = ">=8.2.3,<9.0.0"