From 8514690c7b668748b7070a1d362c0b4980048967 Mon Sep 17 00:00:00 2001 From: Claude Date: Wed, 27 May 2026 19:48:27 +0000 Subject: [PATCH] fix: resolve pytest/pytest-asyncio dependency conflict Bump pytest to 9.0.3 and pytest-asyncio to 1.4.0 to resolve the version conflict where pytest-asyncio 0.25.3 required pytest<9. https://claude.ai/code/session_01SZPtbS53pwouYjCipGsysX --- tests/requirements.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/requirements.txt b/tests/requirements.txt index c787125..b08729f 100644 --- a/tests/requirements.txt +++ b/tests/requirements.txt @@ -1,6 +1,6 @@ # Test requirements -pytest==8.3.4 -pytest-asyncio==0.25.3 +pytest==9.0.3 +pytest-asyncio==1.4.0 PyYAML>=6.0 hypothesis>=6.100.0 tomli>=2.0.0; python_version < "3.11"