Theom
Theom
I have tried various combinations of the `apply_extents` parameter, to no avail. I thought it was relevant, from its description in the docs. Specifically I thought that by disabling extents...
Not sure I'm the person best suited for the job as I've never directly used shapely but I can take a look!
No mention of STRtree in the 1.8 to 2.0 [migration guide](https://shapely.readthedocs.io/en/stable/migration.html). Too bad the warning is so vague compared to others which in some instances indicate a way forward. Looking...
I don't think the deprecation warning can be avoided. It's issued at instantiation (`tree = STRtree(geoms)`) and the way to instantiate will not change (except for the introduction of an...
Yes, I'll try to take a look at the test suite.
I also think the ability to restrict access to the admin page is very important. A password-protected page would be welcome. A parameter to set a custom URL would also...
If you are using `value_throttled` in the context of a DynamicMap, you can just get the actual widget value, _e.g._: ```python def make_plot(arg1): real_value = slider.value # instead of arg1...
Thanks @Hoxbro In my case this does not help though. In fact I'm populating the slider's options dynamically which leads to some subtle but harmful behavior: ```python slider.options = ['A',...
The implementation of `value_throttled` in Player (#3756) means they are now subject to the same issue as ordinary sliders. That leads to apparently even weirder behavior although I will have...
By any chance, does someone have a working workaround for Bokeh 3.1.x?