From 08681d432abe06bfb129e32fc70533183ea579bb Mon Sep 17 00:00:00 2001 From: HARI KAPADIA <99083489+harikapadia999@users.noreply.github.com> Date: Sat, 6 Dec 2025 23:25:57 +0530 Subject: [PATCH] Fix: Add pandas to notebooks dependencies Fixes #151 - ModuleNotFoundError when running sam3_image_predictor_example.ipynb The example notebook requires pandas but it was only listed in dev dependencies. Added pandas to the notebooks optional dependencies to resolve the import error. --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index e4998de0..be426d88 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -64,6 +64,7 @@ notebooks = [ "einops", "scikit-image", "scikit-learn", + "pandas", ] train = [ "hydra-core",