Skip to content
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

Replace usage of np.float with float (#147) #150

Merged

Commits on Apr 11, 2023

  1. Replace usage of np.float with float (zlatko-minev#147)

    The epr_numerical_diagonalization function uses np.float which has been
    deprecated in Numpy.
    
    Refer https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations
    
    The continued usage of np.float yields the following error in the
    epr_numerical_diaganolization function when later versions of Numpy is used.
    
    "AttributeError: module 'numpy' has no attribute 'float'."
    
    This commit replace np.float with float to solve this error.
    jagandecapri committed Apr 11, 2023
    Configuration menu
    Copy the full SHA
    a029a7b View commit details
    Browse the repository at this point in the history