8000
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 d0cdf97 commit 1652994Copy full SHA for 1652994
lib/matplotlib/cbook/__init__.py
@@ -2081,9 +2081,10 @@ def _check_1d(x):
2081
# This code should correctly identify and coerce to a
2082
# numpy array all pandas versions.
2083
with warnings.catch_warnings(record=True) as w:
2084
- warnings.filterwarnings("always",
2085
- category=DeprecationWarning,
2086
- module='pandas[.*]')
+ warnings.filterwarnings(
+ "always",
+ category=DeprecationWarning,
2087
+ message='Support for multi-dimensional indexing')
2088
2089
ndim = x[:, None].ndim
2090
# we have definitely hit a pandas index or series object
0 commit comments