Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
ipython_genutils is an indirect dependency of nbdime, make sure ci in…
…stalls it
  • Loading branch information
bsipocz committed Sep 8, 2022
commit 472cad713cbeb0ce4dba811601363066e99d7df6
4 changes: 3 additions & 1 deletion dodo.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@ def task_test():
}

def task_install_test_deps():
test_deps = ['matplotlib', 'sympy', 'pytest-cov', 'pytest-mock', 'nbdime']
# 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']
return {
'actions': [_make_cmd(['pip', 'install'] + test_deps)],
}
Expand Down