Skip to content

Commit dd16aa7

Browse files
TomAugspurgerjreback
authored andcommitted
DEPR: Fixed warning for implicit registration (pandas-dev#24964)
1 parent ba7b895 commit dd16aa7

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
@@ -74,6 +74,11 @@ Bug Fixes
7474

7575
- Bug in :func:`merge` when merging by index name would sometimes result in an incorrectly numbered index (:issue:`24212`)
7676

77+
**Visualization**
78+
79+
- Fixed the warning for implicitly registered matplotlib converters not showing. See :ref:`whatsnew_0211.converters` for more (:issue:`24963`).
80+
81+
7782
**Other**
7883

7984
-

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)