You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If I run a simple example like the below in VS Code:
importnumpyasnpimportholoviewsashvdefsine_curve(phase, freq):
xvals= [0.1*iforiinrange(100)]
returnhv.Curve((xvals, [np.sin(phase+freq*x) forxinxvals]))
# When run live, this cell's output should match the behavior of the GIF belowdmap=hv.DynamicMap(sine_curve, kdims=['phase', 'frequency'])
dmap.redim.range(phase=(0.5,1), frequency=(0.5,1.25))
It looks like jupyter-bokeh compatible with bokeh 2.4 was never published. The last working version is probably bokeh 2.3. Note that holoviz stack based on bokeh 3 was published yesterday, so if you don't mind updating your dependencies, then this may be a non-issue for you. We probably will want to make a retroactive 2.0.5 release anyway.
If I run a simple example like the below in VS Code:
I get the error:
Libraries I have installed include:
VS Code is: 1.78.2 running on a M1 mac.
Also note that if I run the same example in Jupyter Lab on the same machine it renders fine, but seems to not have interactivity.
The text was updated successfully, but these errors were encountered: