-
Notifications
You must be signed in to change notification settings - Fork 13
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
PR for v.1.9.4 #203
PR for v.1.9.4 #203
Conversation
…dling-bugfix Merging bugfix for #200 - `np.isnan()` handling
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #203 +/- ##
==========================================
- Coverage 87.96% 87.95% -0.02%
==========================================
Files 210 210
Lines 31164 31166 +2
Branches 2552 2553 +1
==========================================
- Hits 27413 27411 -2
- Misses 2791 2793 +2
- Partials 960 962 +2
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
Hey Chris, Thank you so much for all your help in finishing up this PR! Also for merging it and editing the contributors to the project list. Prehaps there was something missing there, as I am not currently listed on the contributers section of the repo, not sure if I have to do some action on my side. |
Also I will check the fix on the safe casting type you made. I don't recall ever managing those on python before |
@ThomasGl : Hmm - odd. It seems that Github is listing you as a contributor on the release (see here ) but for some reason not listing you on the overall Github contributors list. That seems decidedly strange to me. In any case, I've included you on the contributor list in the docs which get listed in a couple places there. And as for the safe casting change, basically there were two types of value that were getting handled improperly by |
Hey Chris, I checked out the unit tests, they look great. It seems to me quite odd the safe casting type for the np.isnan(), I check on numpy lib if this behaviour is expected or some changes could be done in that matter. As for the contributors mentions, I think there's some thing with how the PR was identified by guithub. I will try to contact them about it, in the meantime if you can check the git log and status of the repo there might be some indication there of what happend. Thank you once more, |
np.isnan()
operations that generate aTypeError
when casting in safe-mode (the default). Thanks to @ThomasGl !