Suppress DeprecationWarning
when updating template.data
#5080
+87
−5
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Closes #4997
The Mapbox deprecation warning added to
go.Scattermapbox
in #4900 is falsely triggered whenever apx
figure is created, because the default template contains a'scattermapbox'
key intemplate.data
, which causes ago.Scattermapbox
trace object to be created during validation.The Python warning filters suppress these warnings by default since they are not emitted at the top level, but they may surface in Pytest (which enables all warnings) or for anyone using custom warnings settings.
This PR edits the
Template
constructor to ignoreDeprecationWarning
s emitted while settingtemplate.data
. It also adds tests to verify that deprecation warnings are correctly emitted.Note: I've also opened #5081 to track work for removing
mapbox
and made a note to remove'scattermapbox'
from templates as part of that work.This reduces the warning noise in our own unit tests as well.
test_optional
onmain
:test_optional
on this branch: