Skip to content

Commit

Permalink
Backport PR pandas-dev#24964: DEPR: Fixed warning for implicit regist…
Browse files Browse the repository at this point in the history
…ration
  • Loading branch information
TomAugspurger authored and MeeseeksDev[bot] committed Jan 29, 2019
1 parent 638ac19 commit 90961de
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 90961de

Please sign in to comment.