Maxime Liquet

Results 828 comments of Maxime Liquet

Support for Python 3.11 was fixed in https://github.com/holoviz/holoviews/pull/5513 and released in HoloViews 1.15.3 https://holoviews.org/releases.html#version-1-15-3.

As indicated in https://github.com/AutoViML/AutoViz/issues/102#issuecomment-1890901228, the fix for this in HoloViews has been released in version `1.15.3`. So you'll need this version of HoloViews or an older one if you run...

I thought we didn't compare for identity because of mutable/complex objects. Take the code below, right now the `debug` callback is called. With your changes, it no longer is. ```python...

Yes, your points make sense to me. We often see Param users, and in particular Panel users using Param, asking why updating their list/dict doesn't execute their callbacks. Expanding this...

Hi @LinuxIsCool, This feature hasn't yet been merged into Param and I'm not sure yet about the right API. Marc indeed opened a PR to add a `required` attribute to...

My take on this one is that I believe this requires to be a little more specified. `on_init` was implemented after https://github.com/holoviz/param/issues/513 except that the OP required for the callback...

> Adding a post-init hook is a less explicit way to save a few characters; I don't object but don't think it adds much You can't read my brain (yet)...

Oh right! I never get this right! so indeed `@param.depends(on_init=True)` would not declare any dependency.

I'm not sure. What should this default to? ```python class Test(param.Parameterized): fps = param.Integer(bounds=(None, -1)) ```

If I could choose I'd prefer Param not to set any default values at all, for all Parameters, so I'm not going to advocate for automatically computing smart default values...