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
63
63
- Bug in slicing a multi-index with an empty list and at least one boolean indexer (:issue:`8781`)
64
64
- ``io.data.Options`` now raises ``RemoteDataError`` when no expiry dates are available from Yahoo (:issue:`8761`).
65
65
- ``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):
2041
2041
2042
2042
@slow
2043
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
+
2044
2047
df = DataFrame (randn (100 , 4 ))
2045
2048
series = df [0 ]
2046
2049
You can’t perform that action at this time.
0 commit comments