From 365c41709494a5a178ed67c2578bb136c55ead82 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 1 Aug 2026 22:13:20 +0000 Subject: [PATCH 1/2] chore(deps-dev): update fastapi requirement Updates the requirements on [fastapi](https://github.com/fastapi/fastapi) to permit the latest version. - [Release notes](https://github.com/fastapi/fastapi/releases) - [Commits](https://github.com/fastapi/fastapi/compare/0.128.8...0.141.1) --- updated-dependencies: - dependency-name: fastapi dependency-version: 0.141.1 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..37b42d7c1 100644 --- a/requirements/adapter_dev.txt +++ b/requirements/adapter_dev.txt @@ -32,7 +32,7 @@ falcon>=4.2.0,<5; python_version >= "3.9" # fastapi # Note: fastapi 0.128.8 requires Python >=3.9; 3.7/3.8 stay on the older pinned release. fastapi>=0.70.0,<1; python_version < "3.9" -fastapi>=0.128.8,<1; python_version >= "3.9" +fastapi>=0.141.1,<1; python_version >= "3.9" # Flask # Note: Flask 3.1.3 requires Python >=3.9; 3.7/3.8 stay on the older pinned release. From 056357c1f36c686f9f406af9623b6ee5e093c5ea Mon Sep 17 00:00:00 2001 From: William Bergamin Date: Mon, 3 Aug 2026 14:53:19 -0400 Subject: [PATCH 2/2] chore(deps-dev): keep Python 3.9 on fastapi 0.128.x fastapi 0.141.1 requires Python >=3.10, so Dependabot's bump on the python_version >= "3.9" line would strand Python 3.9 with nothing installable. Split the requirement so 3.9 stays on the last 3.9-compatible release (0.128.x; the floor jumped to >=3.10 at 0.129.0) and 3.10+ takes the 0.141.1 target. Co-Authored-By: Claude --- requirements/adapter_dev.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements/adapter_dev.txt b/requirements/adapter_dev.txt index 37b42d7c1..debc71edd 100644 --- a/requirements/adapter_dev.txt +++ b/requirements/adapter_dev.txt @@ -30,9 +30,9 @@ falcon>=2,<4; python_version < "3.9" falcon>=4.2.0,<5; python_version >= "3.9" # fastapi -# Note: fastapi 0.128.8 requires Python >=3.9; 3.7/3.8 stay on the older pinned release. fastapi>=0.70.0,<1; python_version < "3.9" -fastapi>=0.141.1,<1; python_version >= "3.9" +fastapi>=0.128.8,<0.129.0; python_version >= "3.9" and python_version < "3.10" +fastapi>=0.141.1,<1; python_version >= "3.10" # Flask # Note: Flask 3.1.3 requires Python >=3.9; 3.7/3.8 stay on the older pinned release.