From 68d0816f3f99c3efc9c43e9235bf623b0cc4cc64 Mon Sep 17 00:00:00 2001 From: "zongsi.zhang" Date: Mon, 23 Mar 2026 13:42:25 -0700 Subject: [PATCH 1/2] feat: relax requests lower bound to >=2.31.0 for MWAA compatibility Lower the requests minimum version from 2.32.3 to 2.31.0 to support MWAA environments that may ship with older requests versions. Co-Authored-By: Claude Opus 4.6 (1M context) --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index ece4287..85a8410 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,7 @@ readme = "README.md" license = "Apache-2.0" dependencies = [ "packaging", - "requests>=2.32.3", + "requests>=2.31.0", "websockets>=13.0", "tenacity>=8.2.3", "cbor2>=5.6.3", From 5de09d53b3d1f964b493660fb38c3fd3913995d4 Mon Sep 17 00:00:00 2001 From: "zongsi.zhang" Date: Mon, 23 Mar 2026 13:45:14 -0700 Subject: [PATCH 2/2] bump version to 0.25.4, relax types-requests lower bound to >=2.31.0 Co-Authored-By: Claude Opus 4.6 (1M context) --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 85a8410..9ebaf86 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "wherobots-python-dbapi" -version = "0.25.3" +version = "0.25.4" description = "Python DB-API driver for Wherobots DB" authors = [{ name = "Maxime Petazzoni", email = "max@wherobots.com" }] requires-python = ">=3.10, <4" @@ -15,7 +15,7 @@ dependencies = [ "StrEnum>=0.4.15,<0.5", "pyarrow>=14.0.2", "pandas", - "types-requests>=2.32.0.20241016", + "types-requests>=2.31.0", "pandas-stubs>=2.0.3.230814", ]