From 7d22af133b6ebba3adbd8ad22ea32b38e95da83e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Jul 2026 21:07:16 +0000 Subject: [PATCH] build(deps): bump the python group in /backend with 3 updates Updates the requirements on [fastapi](https://github.com/fastapi/fastapi), [prometheus-client](https://github.com/prometheus/client_python) and [ruff](https://github.com/astral-sh/ruff) to permit the latest version. Updates `fastapi` to 0.140.7 - [Release notes](https://github.com/fastapi/fastapi/releases) - [Commits](https://github.com/fastapi/fastapi/compare/0.139.2...0.140.7) Updates `prometheus-client` to 0.26.0 - [Release notes](https://github.com/prometheus/client_python/releases) - [Commits](https://github.com/prometheus/client_python/compare/v0.25.0...v0.26.0) Updates `ruff` to 0.16.0 - [Release notes](https://github.com/astral-sh/ruff/releases) - [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md) - [Commits](https://github.com/astral-sh/ruff/compare/0.15.22...0.16.0) --- updated-dependencies: - dependency-name: fastapi dependency-version: 0.140.7 dependency-type: direct:production dependency-group: python - dependency-name: prometheus-client dependency-version: 0.26.0 dependency-type: direct:production dependency-group: python - dependency-name: ruff dependency-version: 0.16.0 dependency-type: direct:development dependency-group: python ... Signed-off-by: dependabot[bot] --- backend/pyproject.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/backend/pyproject.toml b/backend/pyproject.toml index 1fcf276..a274e87 100644 --- a/backend/pyproject.toml +++ b/backend/pyproject.toml @@ -6,7 +6,7 @@ requires-python = ">=3.11" license = { text = "MIT" } authors = [{ name = "Ian Coutinho" }] dependencies = [ - "fastapi>=0.139.2", + "fastapi>=0.140.7", "uvicorn[standard]>=0.51.0", "sqlmodel>=0.0.39", "httpx>=0.28.1", @@ -14,7 +14,7 @@ dependencies = [ "jinja2>=3.1.6", "pyyaml>=6.0.3", "typer>=0.27.0", - "prometheus-client>=0.25.0", + "prometheus-client>=0.26.0", "mcp>=1.28.1", ] @@ -24,7 +24,7 @@ dev = [ "pytest-asyncio>=1.4.0", "pytest-cov>=7.1.0", "respx>=0.23.1", - "ruff>=0.15.22", + "ruff>=0.16.0", "pyright>=1.1.411", "pip-audit>=2.10.1", ]