-
-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Closed
Labels
P1needed for current cycleneeded for current cyclebugsomething brokensomething brokenregressionthis used to workthis used to work
Description
Hi, it seems that setting the ENABLE_KALEIDO_V0_DEPRECATION_WARNINGS = False
broke the write_image()
method.
plotly.py/plotly/basedatatypes.py
Lines 3898 to 3912 in 1462f3f
if ENABLE_KALEIDO_V0_DEPRECATION_WARNINGS: | |
if ( | |
kwargs.get("engine", None) in {None, "auto", "kaleido"} | |
and kaleido_available() | |
and kaleido_major() < 1 | |
): | |
warnings.warn(KALEIDO_DEPRECATION_MSG, DeprecationWarning, stacklevel=2) | |
if kwargs.get("engine", None) == "orca": | |
warnings.warn(ORCA_DEPRECATION_MSG, DeprecationWarning, stacklevel=2) | |
if kwargs.get("engine", None): | |
warnings.warn( | |
ENGINE_PARAM_DEPRECATION_MSG, DeprecationWarning, stacklevel=2 | |
) | |
return pio.write_image(self, *args, **kwargs) | |
pmaher86, ErikPGJ, donishadsmith, PApostol, Remi-Gau and 6 more
Metadata
Metadata
Assignees
Labels
P1needed for current cycleneeded for current cyclebugsomething brokensomething brokenregressionthis used to workthis used to work