From b617abc75b99a02d3b65002cbb46fc0a6eb1dfac Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Wed, 10 Dec 2025 21:48:45 +0000 Subject: [PATCH] fix: Update dependencies to resolve test failures Updated PyYAML to version 6.0.1 to fix a build error related to Cython. Updated typing_extensions to version 4.15.0 to resolve a TypeError when running tests with Python 3.12. --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 612739d..2669b58 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -24,11 +24,11 @@ dependencies = [ "openai==1.3.8", "prompt-toolkit==3.0.41", "pytest==7.3.1", - "PyYAML==6.0", + "PyYAML==6.0.1", "rich==13.7.0", "tiktoken==0.5.2", "tokenizers==0.15.0", - "typing_extensions==4.5.0", + "typing_extensions==4.15.0", ] [project.optional-dependencies]