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
numpy.MaChar has been deprecated since numpy v1.22, and has been removed since v1.25 (see https://numpy.org/doc/1.25/release/1.25.0-notes.html and numpy/numpy#22638). Not sure how to replace it yet, but one should be able to figure out based on the documentation:
numpy.MaChar
numpy v1.22
v1.25
numpy.finfo v1.22
numpy.MachAr v1.22
numpy.finfo v1.26
np.finfo(float).machar.tiny should become np.finfo(float).tiny and np.finfo(float).machar.xmax np.finfo(float).max
np.finfo(float).machar.tiny
np.finfo(float).tiny
np.finfo(float).machar.xmax
np.finfo(float).max
The text was updated successfully, but these errors were encountered:
was fixed by #57 and #62.
Sorry, something went wrong.
No branches or pull requests
numpy.MaChar
has been deprecated sincenumpy v1.22
, and has been removed sincev1.25
(see https://numpy.org/doc/1.25/release/1.25.0-notes.html and numpy/numpy#22638). Not sure how to replace it yet, but one should be able to figure out based on the documentation:numpy.finfo v1.22
https://numpy.org/doc/1.22/reference/generated/numpy.finfo.html#numpy.finfonumpy.MachAr v1.22
https://numpy.org/doc/1.22/reference/generated/numpy.MachAr.html#numpy.MachArnumpy.finfo v1.26
https://numpy.org/doc/1.26/reference/generated/numpy.finfo.html#numpy.finfonp.finfo(float).machar.tiny
should becomenp.finfo(float).tiny
andnp.finfo(float).machar.xmax
np.finfo(float).max
The text was updated successfully, but these errors were encountered: