We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi,
Can you please update the library to be compatible with numpy 2?
The below error is thrown when running: estimator.fit(df['amount'].values).evaluate(1000)
estimator.fit(df['amount'].values).evaluate(1000)
np.asfarray was removed in the NumPy 2.0 release. Use np.asarray with a proper dtype instead.
np.asfarray
np.asarray
Thanks
The text was updated successfully, but these errors were encountered:
Very open to PRs if you, or anyone else, wants to have a go at it. :)
I'll probably look into it eventually myself, but no guarantees as to when that happens.
Sorry, something went wrong.
Closed by #171
No branches or pull requests
Hi,
Can you please update the library to be compatible with numpy 2?
The below error is thrown when running:
estimator.fit(df['amount'].values).evaluate(1000)
np.asfarray
was removed in the NumPy 2.0 release. Usenp.asarray
with a proper dtype instead.Thanks
The text was updated successfully, but these errors were encountered: