From fe65f4d90269137da396efeea8b83d66bcc41078 Mon Sep 17 00:00:00 2001 From: Katrina Rogan Date: Mon, 1 Jun 2026 19:42:16 +0200 Subject: [PATCH] Bump requirements to avoid gcsfs close spam Signed-off-by: Katrina Rogan --- dev-requirements.txt | 8 ++++---- pyproject.toml | 9 +++++---- 2 files changed, 9 insertions(+), 8 deletions(-) diff --git a/dev-requirements.txt b/dev-requirements.txt index f1fa710805..9c1bc738f6 100644 --- a/dev-requirements.txt +++ b/dev-requirements.txt @@ -139,13 +139,13 @@ filelock==3.20.3 # virtualenv flatbuffers==25.12.19 # via tensorflow -flyteidl==1.16.3 +flyteidl==1.16.7 # via flytekit frozenlist==1.4.1 # via # aiohttp # aiosignal -fsspec==2024.5.0 +fsspec==2025.3.2 # via # adlfs # flytekit @@ -153,7 +153,7 @@ fsspec==2024.5.0 # s3fs gast==0.7.0 # via tensorflow -gcsfs==2024.5.0 +gcsfs==2025.3.2 # via flytekit google-api-core[grpc]==2.19.0 # via @@ -541,7 +541,7 @@ rich-click==1.8.2 # via flytekit rsa==4.9 # via google-auth -s3fs==2024.5.0 +s3fs==2025.3.2 # via flytekit scikit-learn==1.5.0 # via -r dev-requirements.in diff --git a/pyproject.toml b/pyproject.toml index 036ab5f182..765813a1a9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -22,10 +22,11 @@ dependencies = [ "docker>=4.0.0", "docstring-parser>=0.9.0", "flyteidl>=1.16.7,<2.0.0a0", - "fsspec>=2023.3.0", + # 2024.9.0 floor: aiohttp/gcsfs Python 3.12 shutdown-race fixes (_runner aclose loop safety) + "fsspec>=2024.9.0", + # 2024.9.0 floor: shutdown-race fixes (supersedes the 2024.2.0 bug, https://github.com/fsspec/gcsfs/pull/643) # Bug in 2025.5.0, 2025.5.0post1 https://github.com/fsspec/gcsfs/issues/687 - # Bug in 2024.2.0 https://github.com/fsspec/gcsfs/pull/643 - "gcsfs>=2023.3.0,!=2024.2.0,!=2025.5.0,!=2025.5.0post1", + "gcsfs>=2024.9.0,!=2025.5.0,!=2025.5.0post1", "googleapis-common-protos>=1.57", "grpcio", "grpcio-status", @@ -49,7 +50,7 @@ dependencies = [ "requests>=2.18.4", "rich", "rich_click", - "s3fs>=2023.3.0,!=2024.3.1", + "s3fs>=2024.9.0", "statsd>=3.0.0", "typing_extensions", "urllib3>=1.22",