File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed
Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -63,3 +63,4 @@ Bug Fixes
6363- Bug in slicing a multi-index with an empty list and at least one boolean indexer (:issue:`8781`)
6464- ``io.data.Options`` now raises ``RemoteDataError`` when no expiry dates are available from Yahoo (:issue:`8761`).
6565- ``Timedelta`` kwargs may now be numpy ints and floats (:issue:`8757`).
66+ - Skip testing of histogram plots for matplotlib <= 1.2 (:issue:`8648`).
Original file line number Diff line number Diff line change @@ -2041,6 +2041,9 @@ def test_kde_missing_vals(self):
20412041
20422042 @slow
20432043 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+
20442047 df = DataFrame (randn (100 , 4 ))
20452048 series = df [0 ]
20462049
You can’t perform that action at this time.
0 commit comments