We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4faf620 + eb7ce0f commit 3edbc78Copy full SHA for 3edbc78
doc/source/whatsnew/v0.15.2.txt
@@ -63,3 +63,4 @@ Bug Fixes
63
- Bug in slicing a multi-index with an empty list and at least one boolean indexer (:issue:`8781`)
64
- ``io.data.Options`` now raises ``RemoteDataError`` when no expiry dates are available from Yahoo (:issue:`8761`).
65
- ``Timedelta`` kwargs may now be numpy ints and floats (:issue:`8757`).
66
+- Skip testing of histogram plots for matplotlib <= 1.2 (:issue:`8648`).
pandas/tests/test_graphics.py
@@ -2041,6 +2041,9 @@ def test_kde_missing_vals(self):
2041
2042
@slow
2043
def test_hist_df(self):
2044
+ if self.mpl_le_1_2_1:
2045
+ raise nose.SkipTest("not supported in matplotlib <= 1.2.x")
2046
+
2047
df = DataFrame(randn(100, 4))
2048
series = df[0]
2049
0 commit comments