Skip to content

Commit fd1c66c

Browse files
meeseeksmachinejreback
authored andcommitted
Backport PR #24964: DEPR: Fixed warning for implicit registration (#24997)
1 parent 72dc33f commit fd1c66c

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

doc/source/whatsnew/v0.24.1.rst

+5
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,11 @@ Bug Fixes
7171
-
7272

7373

74+
**Visualization**
75+
76+
- Fixed the warning for implicitly registered matplotlib converters not showing. See :ref:`whatsnew_0211.converters` for more (:issue:`24963`).
77+
78+
7479
**Other**
7580

7681
-

pandas/plotting/_core.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
else:
4040
_HAS_MPL = True
4141
if get_option('plotting.matplotlib.register_converters'):
42-
_converter.register(explicit=True)
42+
_converter.register(explicit=False)
4343

4444

4545
def _raise_if_no_mpl():

0 commit comments

Comments
 (0)