From 06edd0ac3e3e2c5faf3c314f9abe0f0e53e381b4 Mon Sep 17 00:00:00 2001 From: Nick Partridge Date: Mon, 13 Apr 2026 11:53:15 +1000 Subject: [PATCH] Bump s3fs lower bound to >=2024.2.0 The s3fs dependency had no version floor, allowing the resolver to pull ancient versions (e.g. 0.4.2) in downstream consumers. Add a lower bound of 2024.2.0 to ensure a modern version is resolved. Bump package version to 0.9.5. Co-authored-by: Amp Amp-Thread-ID: https://ampcode.com/threads/T-019d8442-4ab4-700d-8f8f-fed010bf9c75 --- blocks/__init__.py | 2 +- setup.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/blocks/__init__.py b/blocks/__init__.py index 1c301a0..b8e7f4b 100644 --- a/blocks/__init__.py +++ b/blocks/__init__.py @@ -2,7 +2,7 @@ __author__ = """Bradley Axen""" __email__ = "baxen@squareup.com" -__version__ = "0.9.4" +__version__ = "0.9.5" from blocks.core import ( diff --git a/setup.py b/setup.py index d87a7ea..da8fe5e 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ "pandas", "fsspec>=2021.7.0", "gcsfs>=2021.7.0", - "s3fs", + "s3fs>=2021.7.0", "pyarrow", "fastavro", "wrapt", @@ -25,7 +25,7 @@ setup( name="sq-blocks", - version="0.9.4", + version="0.9.5", description=( "Blocks provides a simple interface to read, organize, and manipulate structured data" " in files on local and cloud storage"