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
* Revert back to makedirs with exist_ok in codegen since this is already Python 3 only
* Follow the Python 3 makedirs implementation by checking isdir rather than errno
Plotly with python 2.7 fails when using the
iframe
renderer, due to a Python 3 call to os.makedirs with the exist_ok flag.Minimum failing example:
import plotly.graph_objects as go fig = go.Figure( data=[go.Bar(y=[2, 1, 3])], layout_title_text="A Figure Displayed with the 'png' Renderer" ) fig.show(renderer="iframe")
The text was updated successfully, but these errors were encountered: