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
hvPlot StreamingCallable class throws ParamFutureWarning
.venv\Lib\site-packages\hvplot\converter.py:100: ParamFutureWarning: 'get_param_values' has been deprecated and will be removed in a future version. Use .param.values().items() instead (or .param.values() for the common case of dict(....param.get_param_values()))
old = {k: v for k, v in self.param.get_param_values() if k not in ['callable', 'name']}
We do not need to create a new alpha tag. In hvPlot (and all the other HoloViz packages), the release manager (me usually for hvPlot) creates a new release by pushing a git tag to the repository with the version (git tag -m "Version x.x.x" vx.x.x and git push origin vx.x.x. The continuous integration on GitHub is triggered by this even and builds and pushes the new packages to PyPI/conda/etc.
hvPlot StreamingCallable class throws ParamFutureWarning
.venv\Lib\site-packages\hvplot\converter.py:100: ParamFutureWarning: 'get_param_values' has been deprecated and will be removed in a future version. Use
.param.values().items()
instead (or.param.values()
for the common case ofdict(....param.get_param_values())
)old = {k: v for k, v in self.param.get_param_values() if k not in ['callable', 'name']}
ALL software version info
Description of expected behavior and the observed behavior
Update hvPlot so that it works with the latest version of param without throwing warnings
The text was updated successfully, but these errors were encountered: