From d76ebfb7c936f66e3c6b4263e0de2936184a4b53 Mon Sep 17 00:00:00 2001 From: "jeff.wade" Date: Mon, 10 Aug 2026 11:10:34 -0400 Subject: [PATCH 1/2] Pin aiobotocore and s3fs versions --- pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index fb34eb3d..48e24d22 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -26,7 +26,8 @@ dependencies = [ "PyYaml~=6.0.2", "requests", "ruamel.yaml", - "s3fs", + "aiobotocore<3.9.0" + "s3fs==2026.4.0", "scipy", "shapely~=2.1.2", "xarray[complete]==2025.12.0", From dcf2338e491cbcb32b288354b2fdf5c8a0ded7df Mon Sep 17 00:00:00 2001 From: "jeff.wade" Date: Mon, 10 Aug 2026 11:18:28 -0400 Subject: [PATCH 2/2] Add missing comma to package requirements --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 48e24d22..8c04182c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -26,7 +26,7 @@ dependencies = [ "PyYaml~=6.0.2", "requests", "ruamel.yaml", - "aiobotocore<3.9.0" + "aiobotocore<3.9.0", "s3fs==2026.4.0", "scipy", "shapely~=2.1.2",