Maxime Liquet
Maxime Liquet
`name` of a Parameterized instance overridden when is the default of a `readonly/constant` Parameter
```python import param class A(param.Parameterized): x = param.Number() a1 = A(name="FOO1") a2 = A(name="FOO2") class B(param.Parameterized): const = param.Parameter(a1, constant=True) ro = param.Parameter(a2, readonly=True) b = B() print(f'{b.const.name=}') print(f'{b.ro.name=}') ```...
Fixes https://github.com/holoviz/param/issues/937 Logging this change in case we agree on the suggested change in the issue. - [ ] Add tests
Fixing https://github.com/holoviz/param/issues/932, I noticed that the link to download the Promo notebook on which is based the intro video was broken (https://tinyurl.com/parampromo). The notebook links to an image in `docs/assets`,...
Fixes https://github.com/holoviz/param/issues/932
### Checklist - [X] I added a descriptive title - [X] I searched open requests and couldn't find a duplicate ### What is the idea? I often get this message...
### Checklist - [X] I added a descriptive title - [X] I searched open reports and couldn't find a duplicate ### What happened? Bokeh, since its 3.0 release, pushes dev...
### Checklist - [X] I added a descriptive title - [X] I searched open reports and couldn't find a duplicate ### What happened? I'm on a Mac M2 and running...
### Checklist - [X] I added a descriptive title - [X] I searched open requests and couldn't find a duplicate ### What is the idea? `mamba` has been a very...
@droumis I had a quick look and I think in the end it's not too hard to customize the nav bar to have multiple dropdowns.  This PR is not...
Hi :) I've just read in the docs that `Windows may be supported in future depending on user interest.` so I'm writing to demonstrate that there is indeed user interest...