-
Notifications
You must be signed in to change notification settings - Fork 158
Open
Labels
bugThere is a problem with the code or documentationThere is a problem with the code or documentation
Description
Describe the bug
np.float was a deprecated alias for the builtin float. To avoid this error in existing code, use float by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use np.float64 here.
To Reproduce
Steps to reproduce the behavior:
- pip install geomdl
- run the sample code to produce the code
- AttributeError: module 'numpy' has no attribute 'float'.
np.floatwas a deprecated alias for the builtinfloat. To avoid this error in existing code, usefloatby itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, usenp.float64here.
The aliases was originally deprecated in NumPy 1.20; for more details and guidance see the original release note at:
Expected Behavior
Configuration:
- macos M1
- python3.11
- pip - geomdl version/branch:
pshriwise and TheOtherRealm
Metadata
Metadata
Assignees
Labels
bugThere is a problem with the code or documentationThere is a problem with the code or documentation