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
DeprecationWarning: Please use `OptimizeResult` from the `scipy.optimize` namespace, the `scipy.optimize.optimize` namespace is deprecated.
The fix for this should simply be to alter from scipy.optimize.optimize import OptimizeResult to from scipy.optimize import OptimizeResult in both the hartree_fock.py and hartee_fock_test.py files to eliminate this warning.
The text was updated successfully, but these errors were encountered:
In files hartree_fock_test.py and hartree_fock.py the import pattern of
yields the following deprecation warning:
The fix for this should simply be to alter
from scipy.optimize.optimize import OptimizeResult
tofrom scipy.optimize import OptimizeResult
in both thehartree_fock.py
andhartee_fock_test.py
files to eliminate this warning.The text was updated successfully, but these errors were encountered: