Skip to content

Commit 472cad7

Browse files
committed
ipython_genutils is an indirect dependency of nbdime, make sure ci installs it
1 parent ee98ce5 commit 472cad7

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

dodo.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,9 @@ def task_test():
2727
}
2828

2929
def task_install_test_deps():
30-
test_deps = ['matplotlib', 'sympy', 'pytest-cov', 'pytest-mock', 'nbdime']
30+
# ipython_genutils is an indirect dependency of nbdime, but can be removed from this list
31+
# once https://github.com/jupyter/nbdime/pull/618 ends up in a release
32+
test_deps = ['matplotlib', 'sympy', 'pytest-cov', 'pytest-mock', 'nbdime', 'ipython_genutils']
3133
return {
3234
'actions': [_make_cmd(['pip', 'install'] + test_deps)],
3335
}

0 commit comments

Comments
 (0)