From 79e2f7cd67d1cb33ea797aa229d9541cfb8b568a Mon Sep 17 00:00:00 2001 From: Andreas Fehlner Date: Sun, 9 Mar 2025 06:10:07 +0100 Subject: [PATCH] Update dodo.py --- dodo.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/dodo.py b/dodo.py index 8fc73fa..daf0906 100644 --- a/dodo.py +++ b/dodo.py @@ -27,9 +27,7 @@ def task_test(): } def task_install_test_deps(): - # ipython_genutils is an indirect dependency of nbdime, but can be removed from this list - # once https://github.com/jupyter/nbdime/pull/618 ends up in a release - test_deps = ['matplotlib', 'sympy', 'pytest-cov', 'pytest-mock', 'nbdime', 'ipython_genutils'] + test_deps = ['matplotlib', 'sympy', 'pytest-cov', 'pytest-mock', 'nbdime'] return { 'actions': [_make_cmd(['pip', 'install'] + test_deps)], }