-
Notifications
You must be signed in to change notification settings - Fork 58
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
CI: overwrite with RMS package versions #1289
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #1289 +/- ##
==========================================
+ Coverage 80.02% 81.15% +1.12%
==========================================
Files 98 94 -4
Lines 13680 12438 -1242
Branches 2203 1874 -329
==========================================
- Hits 10948 10094 -854
+ Misses 1999 1685 -314
+ Partials 733 659 -74 ☔ View full report in Codecov by Sentry. |
@@ -222,7 +222,7 @@ def _get_roff_type_and_size( | |||
return "float", value.size, value.size * (4 if is_binary else 5) | |||
if np.issubdtype(value.dtype, np.double): | |||
return "double", value.size, value.size * (8 if is_binary else 9) | |||
if np.issubdtype(value.dtype, np.unicode_): | |||
if np.issubdtype(value.dtype, np.str_): |
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 will guess this is safe for numpy 1 also?
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.
Yep, I see it as far back as numpy 1.20 at least (may be earlier as well)
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.
LGTM
Added an extra commit for the new ruff |
Related to #1288