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
The requirements-ui.txt file specifies a particular version (1.16.2) of holoviews. However, since that version, panel has updated and has removed param_value_if_widget (deprecated) from it's instruction set, which holoviews.core.utils still requires in v1.16.2. This throws an error when trying to use PyHyperScattering.IntegrationUtils.DrawMask;
ImportError: cannot import name 'param_value_if_widget' from 'panel.depends' (d:\Github\pyhyperscattering\venv\Lib\site-packages\panel\depends.py)
Holoviews is now up to v1.19.1. The default panel that installed when I setup the repository was 1.5.2, i.e. the latest build. The change for the panel.depends file can be found here, with the removal being since v1.4.5.
I guess the solutions are to force an earlier version of panel<=1.4.5 alongside holoviews, or use updated version of both repositories.
The text was updated successfully, but these errors were encountered:
The
requirements-ui.txt
file specifies a particular version (1.16.2) ofholoviews
. However, since that version,panel
has updated and has removedparam_value_if_widget
(deprecated) from it's instruction set, whichholoviews.core.utils
still requires in v1.16.2. This throws an error when trying to usePyHyperScattering.IntegrationUtils.DrawMask
;Holoviews is now up to v1.19.1. The default
panel
that installed when I setup the repository was1.5.2
, i.e. the latest build. The change for thepanel.depends
file can be found here, with the removal being since v1.4.5.I guess the solutions are to force an earlier version of
panel<=1.4.5
alongside holoviews, or use updated version of both repositories.The text was updated successfully, but these errors were encountered: