From a3856c06fd86adf727f55e16c037eca47f2ca650 Mon Sep 17 00:00:00 2001 From: Bill Date: Sun, 30 Nov 2025 18:01:40 -0500 Subject: [PATCH] chore: update dependency versions to latest stable --- pyproject.toml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 2bf2662..833cf45 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,15 +6,15 @@ requires-python = ">=3.12" dependencies = [ "fastapi>=0.123.0", "uvicorn[standard]>=0.38.0", - "pydantic>=2.12.5", + "pydantic>=2.12.5,<3.0.0", ] [project.optional-dependencies] dev = [ - "pytest>=8.3.0", - "pytest-asyncio>=0.24.0", + "pytest>=8.4.0", + "pytest-asyncio>=1.2.0", "httpx>=0.28.1", - "requests>=2.32.0", + "requests>=2.32.3,<3.0.0", ] [tool.pytest.ini_options] @@ -23,8 +23,8 @@ testpaths = ["tests"] [tool.uv] dev-dependencies = [ - "pytest>=8.3.0", - "pytest-asyncio>=0.24.0", + "pytest>=8.4.0", + "pytest-asyncio>=1.2.0", "httpx>=0.28.1", - "requests>=2.32.0", + "requests>=2.32.3,<3.0.0", ]