From 36114702f0bc2899ebdec435f4e2d37087dd8657 Mon Sep 17 00:00:00 2001 From: Mohammad Keshmiri Date: Mon, 16 Feb 2026 21:30:20 -0500 Subject: [PATCH] Update pyyaml version constraint to >=6.0.1 The pyyaml 6.0 is incompatible with newer versions of Cython (3.0+). pyyaml==6.0.1 (or newer) includes a fix that forces the use of a compatible Cython version. --- notebooks/unit2/requirements-unit2.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/notebooks/unit2/requirements-unit2.txt b/notebooks/unit2/requirements-unit2.txt index 3209a69c..0389f3fc 100644 --- a/notebooks/unit2/requirements-unit2.txt +++ b/notebooks/unit2/requirements-unit2.txt @@ -4,8 +4,8 @@ numpy huggingface_hub pickle5 -pyyaml==6.0 +pyyaml>=6.0.1 imageio imageio_ffmpeg pyglet==1.5.1 -tqdm \ No newline at end of file +tqdm