Skip to content

Commit

Permalink
DOC: Update changelong
Browse files Browse the repository at this point in the history
Update change log with PRs backported
  • Loading branch information
bashtage committed Jul 16, 2019
1 parent 14bc652 commit 6325eda
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
3 changes: 3 additions & 0 deletions docs/source/release/version0.10.1.rst
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,6 @@ The following Pull Requests were merged since the last release:
* :pr:`5933`: MAINT: Fix test that fails with positive probability
* :pr:`5935`: CLN: port parts of #5220
* :pr:`5940`: MAINT: Fix linting failures
* :pr:`5944`: BUG: Restore ResettableCache
* :pr:`5951`: BUG: Fix mosaic plot with missing category

5 changes: 4 additions & 1 deletion statsmodels/compat/pandas.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@
from distutils.version import LooseVersion

import pandas
from pandas.util._decorators import cache_readonly, deprecate_kwarg
try:
from pandas.util._decorators import cache_readonly, deprecate_kwarg
except ImportError:
from pandas.util.decorators import cache_readonly, deprecate_kwarg


__all__ = ['assert_frame_equal', 'assert_index_equal', 'assert_series_equal',
Expand Down
1 change: 1 addition & 0 deletions statsmodels/graphics/tests/test_mosaicplot.py
Original file line number Diff line number Diff line change
Expand Up @@ -432,6 +432,7 @@ def test_default_arg_index(close_figures):
assert_raises(ValueError, mosaic, data=df, title='foobar')


@pytest.mark.matplotlib
def test_missing_category(close_figures):
# GH5639
animal = ['dog', 'dog', 'dog', 'cat', 'dog', 'cat', 'cat',
Expand Down

0 comments on commit 6325eda

Please sign in to comment.