From 4c70556431e1d6837e37aa5e626d8e7a617686ac Mon Sep 17 00:00:00 2001 From: Claude Date: Thu, 13 Nov 2025 00:57:12 +0000 Subject: [PATCH] chore: bump pytest to 9.0.0 and pytest-asyncio to 1.3.0 Fix dependency conflict where pytest-asyncio 1.2.0 only supports pytest<9. Updated pytest-asyncio to 1.3.0 which is compatible with pytest 9.x (requires pytest<10,>=8.2). --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index c87c868..e02d2d5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,9 +14,9 @@ dependencies = [ [dependency-groups] dev = [ - "pytest==8.4.2", + "pytest==9.0.0", "pytest-timeout==2.4.0", - "pytest-asyncio==1.2.0", + "pytest-asyncio==1.3.0", "pytest-cov==7.0.0", "ruff==0.14.4", "bandit==1.8.6",