Closed fspinna closed 1 year ago
Patch coverage: 100.00
% and no project coverage change.
Comparison is base (
d8c1930
) 94.57% compared to head (a7102c8
) 94.57%.
:exclamation: Your organization is not using the GitHub App Integration. As a result you may experience degraded service beginning May 15th. Please install the Github App Integration for your organization. Read more.
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Do you have feedback about the report comment? Let us know in this issue.
Hello @fspinna, thank you for your PR!
Indeed, np.int
is deprecated since NumPy 1.20.0:
https://numpy.org/devdocs/release/1.20.0-notes.html
It is replaced by np.int_
or int
.
This commit updates the data type from np.int to np.int_ in locate method of LearningShapelets. The change ensures compatibility with the NumPy library given that using the aliases of builtin types like np.int is deprecated.