yt87

Results 16 comments of yt87

This fix seems to work for me: File ``duck_array_ops.py``, function ``as_shared_dtype`` ``` # Avoid calling array_type("cupy") repeatidely in the any check array_type_cupy = array_type("cupy") # GT fix import cupy as...

This issue occurs only in jupyter. When I run a slightly modified notebook ``` import hvplot.streamz # noqa from streamz.dataframe import Random import panel as pn df = Random(interval='5s', freq='1s')...

Would this be an acceptable, if temporary, fix for #9195? Modified code in ``as_shared_dtype``: ``` array_type_cupy = array_type("cupy") # temporary fix import nested_duck_arrays.dask def _maybe_cupy(seq): return any(isinstance(x, array_type_cupy) or is_duck_dask_array(x)...

Trying again... ![scrot](https://github.com/user-attachments/assets/759a2144-32b2-4f35-a005-b174d43ac74f)

The new features ``hover_tooltips`` and ``hover_formatters`` do work, so this is not a big issue, just a backward incompatible change. I guess this issue can be closed.

This is the code that works: ``` import hvplot.pandas import numpy as np import pandas as pd import panel as pn pn.extension() index = pd.date_range("2020-07-01", "2021-07-01", freq="D") data = np.random.random((index.size,...