From 11e17bf5c00b70a63735b55a28df3457be38f879 Mon Sep 17 00:00:00 2001 From: Bedram Tamang Date: Wed, 8 Jul 2026 10:17:05 -0700 Subject: [PATCH 1/2] python/fastapi_startkit: pin to 0.47.0 (FastAPI 0.139) to match baseline The previous range resolved fastapi-startkit to 0.46.x -> FastAPI 0.124.4, while the fastapi baseline entry runs FastAPI 0.139. Pin to 0.47.0 so both Python entries benchmark on the same FastAPI/Starlette (0.139.0 / 1.3.1), making the comparison apples-to-apples. Idiomatic include_router registration is kept unchanged. route_spec.rb passes 6/6 on the 0.139 Docker build. --- python/fastapi_startkit/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/fastapi_startkit/pyproject.toml b/python/fastapi_startkit/pyproject.toml index 4b99df00749..318cbfe6b46 100644 --- a/python/fastapi_startkit/pyproject.toml +++ b/python/fastapi_startkit/pyproject.toml @@ -7,4 +7,4 @@ requires = ["flit_core"] name = 'server' version = '1.0.0' description = "Simple benchmark implementation" -dependencies = ["fastapi-startkit[fastapi]==0.46.0"] +dependencies = ["fastapi-startkit[fastapi]==0.47.0"] From efb2b4dc2d32272fb51edd1b207cc5a8e7a6de35 Mon Sep 17 00:00:00 2001 From: Bedram Tamang Date: Wed, 8 Jul 2026 10:21:19 -0700 Subject: [PATCH 2/2] python/fastapi_startkit: bump displayed framework version to 0.47 Keep the benchmark's reported version label in sync with the 0.47.0 pin. --- python/fastapi_startkit/config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/fastapi_startkit/config.yaml b/python/fastapi_startkit/config.yaml index 05c2dece30c..702fd9cfd71 100644 --- a/python/fastapi_startkit/config.yaml +++ b/python/fastapi_startkit/config.yaml @@ -1,7 +1,7 @@ framework: website: fastapi-startkit.github.io github: fastapi-startkit/fastapi-startkit-framework - version: 0.46 + version: 0.47 engines: - uvicorn