Skip to content

Commit

Permalink
Backport PR #24964: DEPR: Fixed warning for implicit registration (#2…
Browse files Browse the repository at this point in the history
  • Loading branch information
meeseeksmachine authored and jreback committed Jan 29, 2019
1 parent 72dc33f commit fd1c66c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions doc/source/whatsnew/v0.24.1.rst
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,11 @@ Bug Fixes
-


**Visualization**

- Fixed the warning for implicitly registered matplotlib converters not showing. See :ref:`whatsnew_0211.converters` for more (:issue:`24963`).


**Other**

-
Expand Down
2 changes: 1 addition & 1 deletion pandas/plotting/_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
else:
_HAS_MPL = True
if get_option('plotting.matplotlib.register_converters'):
_converter.register(explicit=True)
_converter.register(explicit=False)


def _raise_if_no_mpl():
Expand Down

0 comments on commit fd1c66c

Please sign in to comment.