-
-
Notifications
You must be signed in to change notification settings - Fork 7.9k
FIX/TST: update tests for pandas 0.21 #9726
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
lib/matplotlib/tests/test_axes.py
Outdated
@@ -5073,6 +5077,9 @@ def test_pandas_indexing_dates(): | |||
|
|||
def test_pandas_errorbar_indexing(): | |||
pd = pytest.importorskip('pandas') | |||
from pandas.tseries import converter | |||
converter.register() | |||
|
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.
PEP8 doesn't like this blank line, otherwise tests seem to be fine.
so unclear if this code actually reduces coverage or if it's an artifact of a different PR. |
Sometimes I feel like I need an undergraduate degree in codecov just to understand codecov... I think the issue is that there are two tests both named |
Huh, did I do that? Anyhow, should be fixed now barring other foolishness |
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.
👍 happy for this to go in once tests pass - at least now we can start testing on latest version of pandas again whilst discussing what to do about unit support
@meeseeksdev backport to v2.1.x |
There seem to be a conflict, please backport manually |
FIX/TST: update tests for pandas 0.21 Conflicts: .appveyor.yml conflicts due thrashing around pandas version pinning
manually backported via ce45bea |
This should fix #9610.
As of pandas 0.21,
import pandas
no longer callsso it has been added to the tests.
Surprisingly no examples depend on pandas, so that made life simpler.
PR Summary
PR Checklist