We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bbf4c7c commit 85e3f1cCopy full SHA for 85e3f1c
lib/matplotlib/cbook/__init__.py
@@ -1414,9 +1414,10 @@ def _check_1d(x):
1414
# This code should correctly identify and coerce to a
1415
# numpy array all pandas versions.
1416
with warnings.catch_warnings(record=True) as w:
1417
- warnings.filterwarnings("always",
1418
- category=DeprecationWarning,
1419
- module='pandas[.*]')
+ warnings.filterwarnings(
+ "always",
+ category=DeprecationWarning,
1420
+ message='Support for multi-dimensional indexing')
1421
1422
ndim = x[:, None].ndim
1423
# we have definitely hit a pandas index or series object
0 commit comments