-
Notifications
You must be signed in to change notification settings - Fork 569
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: missing dep on ipython_genutils #1726
Conversation
@@ -224,7 +224,8 @@ def get_data_files(): | |||
'pandocfilters>=1.4.1', | |||
'testpath', | |||
'defusedxml', | |||
'nbclient>=0.5.0,<0.6.0' | |||
'nbclient>=0.5.0,<0.6.0', | |||
'ipython_genutils', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'ipython_genutils', | |
'ipython-genutils', |
Could write it this way instead.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this looks like the correct play for now
I dropped ipython_genutils in nbclient, since it was mostly used to handle python2/python3 compatibility. Maybe we can do the same here, instead of depending on it? |
mmm it seems it's not only about py2/3 compat here, so maybe it's fine to still depend on it. |
Can be removed when nbconvert is fixed: jupyter/nbconvert#1726
Fixes #1725.
See https://github.com/jupyter/nbconvert/search?q=ipython_genutils for usages.