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
In source file utility.py:446, following code:
in get_figure_type
if int(bokeh.__version.split(".")[0]) < 3:
^^^^^^^^^^^^^^^
AttributeError: module 'bokeh' has no attribute '__version'. Did you mean: 'version'?
Manual fix: after changing '__version' according to the instruction above provided by PyCharm, everything works OK.
The text was updated successfully, but these errors were encountered:
Just noting that there has never been a bokeh.__version attribute without trailing underscores. Instead, there has always been a bokeh.__version__ attribute, as is common for python packages.
Describe the bug
A clear and concise description of what the bug is and how to reproduce it. If applicable, add screenshots.
Environment
OS: Windows 10
Python: 3.11.7
IDE: PyCharm
Package versions
ipython==8.20.0
ipython-genutils==0.2.0
pandasgui==0.2.14
plotly==5.9.0
PyQt5==5.15.10
PyQt5-sip==12.13.0
PyQtWebEngine==5.15.10
bokeh==3.3.0
In source file utility.py:446, following code:
in get_figure_type
if int(bokeh.__version.split(".")[0]) < 3:
^^^^^^^^^^^^^^^
AttributeError: module 'bokeh' has no attribute '__version'. Did you mean: 'version'?
Manual fix: after changing '__version' according to the instruction above provided by PyCharm, everything works OK.
The text was updated successfully, but these errors were encountered: