-
Notifications
You must be signed in to change notification settings - Fork 48
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
Does not work with the latest version of ipywidgets #168
Comments
Here's the relevant migration guide: https://github.com/jupyter-widgets/ipywidgets/blob/master/docs/source/migration_guides.md Supposedly all that needs to be done is to update |
Tried to create a reproducible example in a Docker container. Couldn't (although it did appear in two machines, Linux and Windows). Closing as false alarm for the time being. |
Another bunch of tests revealed that the issue is not reproducible on Linux. It only affects Windows. |
I've found it out why it works on Linux: it is because it uses the global version of the notebook extension and not from the virtualenv. So it is basically the same on Windows and Linux. Got it working with latest ipywidgets (8.0.2) by manually patching the index.js file (searched and replaced all instances of My suggestion is that updating - "@jupyter-widgets/base": "^2 || ^3 || ^4",
+ "@jupyter-widgets/base": "^6", Validating it I've run into the following problem:
|
@mattpap I've included the change proposed above into packages.json, built the project, tested against latest ipywigets 8.0.2 (works fine) and generated the package-lock and yarn.lock files. |
jupyter_bokeh
does not work withipywidgets >=8.0.0a0
Latest compatible version of ipywidgets is7.7.2
.The text was updated successfully, but these errors were encountered: