From 6c4ab747e327db323fc8023293429d43ed5074c6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 1 Aug 2026 22:13:09 +0000 Subject: [PATCH 1/2] chore(deps-dev): update chalice requirement Updates the requirements on [chalice](https://github.com/aws/chalice) to permit the latest version. - [Changelog](https://github.com/aws/chalice/blob/master/CHANGELOG.md) - [Commits](https://github.com/aws/chalice/compare/1.32.0...1.33.0) --- updated-dependencies: - dependency-name: chalice dependency-version: 1.33.0 dependency-type: direct:development ... Signed-off-by: dependabot[bot] --- requirements/adapter_dev.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements/adapter_dev.txt b/requirements/adapter_dev.txt index 959ee8823..4b8916d32 100644 --- a/requirements/adapter_dev.txt +++ b/requirements/adapter_dev.txt @@ -10,7 +10,7 @@ bottle>=0.12,<1 # chalice chalice>=1.28,<1.31; python_version < "3.9" -chalice>=1.32.0,<2; python_version >= "3.9" +chalice>=1.33.0,<2; python_version >= "3.9" # cheroot cheroot<12 From 3ad9aac07936b58e8be3abbaa3bdde406499e2e1 Mon Sep 17 00:00:00 2001 From: William Bergamin Date: Mon, 3 Aug 2026 13:36:01 -0400 Subject: [PATCH 2/2] chore(deps-dev): keep Python 3.9 on chalice 1.32.x chalice 1.33.0 dropped Python 3.9 support (requires_python >=3.10), so Dependabot's bump of the python_version >= "3.9" line to >=1.33.0 would break the install on the 3.9 CI leg. Split the marker so 3.9 stays on the last 1.32.x release and 3.10+ takes 1.33.0. Co-Authored-By: Claude --- requirements/adapter_dev.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/requirements/adapter_dev.txt b/requirements/adapter_dev.txt index 4b8916d32..a9e2e385e 100644 --- a/requirements/adapter_dev.txt +++ b/requirements/adapter_dev.txt @@ -10,7 +10,8 @@ bottle>=0.12,<1 # chalice chalice>=1.28,<1.31; python_version < "3.9" -chalice>=1.33.0,<2; python_version >= "3.9" +chalice>=1.32.0,<1.33; python_version >= "3.9" and python_version < "3.10" +chalice>=1.33.0,<2; python_version >= "3.10" # cheroot cheroot<12