3
0
mirror of https://github.com/triqs/dft_tools synced 2024-07-17 08:30:35 +02:00

[fix] scipy.compress depr -> numpy.compress

This commit is contained in:
Alexander Hampel 2024-01-22 15:13:44 -05:00
parent c48a51c7e7
commit 39e97257df

View File

@ -36,7 +36,7 @@ from .block_structure import BlockStructure
from .util import compute_DC_from_density
from itertools import product
from warnings import warn
from scipy import compress
from numpy import compress
from scipy.optimize import minimize, newton, brenth