Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

[BUGFIX] utils.py - bool = bool #21223

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

Commits on Oct 11, 2023

  1. utils.py - bool = bool

    importing mxnet with numpy 1.20+ results in 
    
    > AttributeError: module 'numpy' has no attribute 'bool'.
    `np.bool` was a deprecated alias for the builtin `bool`. To avoid this error in existing code, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.
    The aliases was originally deprecated in NumPy 1.20; for more details and guidance see the original release note at:
        https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations
    
    `np.bool` was a deprecated alias for the builtin `bool`, so replace `np.bool` with `bool`
    mwunderl committed Oct 11, 2023
    Configuration menu
    Copy the full SHA
    149ea0c View commit details
    Browse the repository at this point in the history