-
-
Notifications
You must be signed in to change notification settings - Fork 18.7k
DEPS: bump xlrd min version to 1.0.0 #23774
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
removes all of those annoying warnings on 2.7 build :> |
Codecov Report
@@ Coverage Diff @@
## master #23774 +/- ##
=========================================
Coverage ? 92.28%
=========================================
Files ? 161
Lines ? 51451
Branches ? 0
=========================================
Hits ? 47483
Misses ? 3968
Partials ? 0
Continue to review full report at Codecov.
|
Hello @jreback! Thanks for updating the PR.
|
@@ -652,7 +653,8 @@ def get_value(self, series, key): | |||
except TypeError: | |||
pass | |||
|
|||
key = Period(key, self.freq).ordinal | |||
period = Period(key, self.freq) | |||
key = period.value if isna(period) else period.ordinal |
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.
cc @jbrockmendel I had to make this change here. Not sure how this actually worked before.
remove numpy warnings on np.diff in boolean arrays
@TomAugspurger if any comments |
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.
Not sure about the period change (the change itself looks fine / necessary. Not sure why it wasn't needed / working before).
remove numpy warnings on np.diff in boolean arrays