-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
COMPAT: Matplotlib 2.2 compatability #20079
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Hello @TomAugspurger! Thanks for updating the PR. Cheers ! There are no PEP8 issues in this Pull Request. 🍻 Comment last updated on March 12, 2018 at 15:27 Hours UTC |
Codecov Report
@@ Coverage Diff @@
## master #20079 +/- ##
=========================================
Coverage ? 91.73%
=========================================
Files ? 150
Lines ? 49139
Branches ? 0
=========================================
Hits ? 45078
Misses ? 4061
Partials ? 0
Continue to review full report at Codecov.
|
doc/source/whatsnew/v0.23.0.txt
Outdated
@@ -343,6 +343,7 @@ Other Enhancements | |||
- :meth:`Timestamp.day_name` and :meth:`DatetimeIndex.day_name` are now available to return day names with a specified locale (:issue:`12806`) | |||
- :meth:`DataFrame.to_sql` now performs a multivalue insert if the underlying connection supports itk rather than inserting row by row. | |||
``SQLAlchemy`` dialects supporting multivalue inserts include: ``mysql``, ``postgresql``, ``sqlite`` and any dialect with ``supports_multivalues_insert``. (:issue:`14315`, :issue:`8953`) | |||
- Compatability with matplotlib 2.2 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'll think I'll remove this just before merging. Other than table, which is broken for py27, there weren't any comparability issues.
@@ -1382,10 +1382,6 @@ def test_format_timedelta_ticks_narrow(self): | |||
for l, l_expected in zip(labels, expected_labels): | |||
assert l.get_text() == l_expected | |||
|
|||
@td.xfail_if_mpl_2_2 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we originally had the mac skips on here (e.g. before 2.2). not really sure if they are still relevant though.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm testing on a mac, so hopefully we're OK.
This should be good to go. |
thanks! |
Summary of changes
closes #20031