From afba4c8c8e7d7efda455d62f9f82af56dc32aed6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 20 Jun 2026 01:52:42 +0000 Subject: [PATCH] chore(deps): bump the python-deps group with 2 updates Updates the requirements on [fastapi](https://github.com/fastapi/fastapi) and [pytest](https://github.com/pytest-dev/pytest) to permit the latest version. Updates `fastapi` to 0.138.0 - [Release notes](https://github.com/fastapi/fastapi/releases) - [Commits](https://github.com/fastapi/fastapi/compare/0.137.2...0.138.0) Updates `pytest` to 9.1.1 - [Release notes](https://github.com/pytest-dev/pytest/releases) - [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst) - [Commits](https://github.com/pytest-dev/pytest/compare/9.1.0...9.1.1) --- updated-dependencies: - dependency-name: fastapi dependency-version: 0.138.0 dependency-type: direct:production dependency-group: python-deps - dependency-name: pytest dependency-version: 9.1.1 dependency-type: direct:development dependency-group: python-deps ... Signed-off-by: dependabot[bot] --- pyproject.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 0cc85c4..266e20a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -30,7 +30,7 @@ dependencies = [ "rich>=15.0.0", "prompt_toolkit>=3.0.52", "httpx>=0.28.1", - "fastapi>=0.137.2", + "fastapi>=0.138.0", "uvicorn>=0.49.0", "python-multipart>=0.0.32", "jinja2>=3.1.6", @@ -41,14 +41,14 @@ dependencies = [ [project.optional-dependencies] dev = [ - "pytest>=9.1.0", + "pytest>=9.1.1", "pytest-cov", "ruff", "mypy", "types-PyYAML", ] test = [ - "pytest>=9.1.0", + "pytest>=9.1.1", "pytest-cov", # tests/test_chat_loop.py uses async def + @pytest.mark.asyncio. # Required in CI; locally most devs have it system-wide.