This is an automated email from the ASF dual-hosted git repository.

fokko pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/iceberg-python.git


The following commit(s) were added to refs/heads/main by this push:
     new 67ea776c Allow fsspec up to 2025.1 (#510)
67ea776c is described below

commit 67ea776c2a7a7039fba66fccd935366ed9bbc8a9
Author: bolkedebruin <[email protected]>
AuthorDate: Mon Mar 11 09:04:58 2024 +0100

    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 52c60d94..dcb65f7c 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"

Reply via email to