Closed jonimatix closed 3 weeks ago
Can you please update the library to be compatible with numpy 2?
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.
Closed by #171
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