You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The scipy._build_utils used in setup.py is no longer shipped in scipy 1.10+, which leads to:
No module named 'scipy._build_utils'
This can be easily fixed by making the following change in setup.py:
# hardcoded value, used to be imported from scipy._build_utils (which is no longer available since scipy 1.10)numpy_nodepr_api=dict(define_macros=[("NPY_NO_DEPRECATED_API", "NPY_1_9_API_VERSION")])
The text was updated successfully, but these errors were encountered:
The
scipy._build_utils
used insetup.py
is no longer shipped inscipy
1.10+, which leads to:This can be easily fixed by making the following change in
setup.py
:The text was updated successfully, but these errors were encountered: