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 requirements suggest that any scipy version greater than or equal to 1.1.0 will support this framework, but as of 1.7.0, 'pinv2' is depreciated from scipy.linalg, after which version the old pinv and pinv2 are consolidated to pinv only. Attempting to import gstools with any scipy version greater than 1.7 fails. As a bandaid fix, line 38 of gstoools/kringe/base.py can be changed from:
Hi there,
this was already reported here: #246
and is already solved here: #247
It will be part of the next release v1.4 that will come in the next days.
The requirements suggest that any scipy version greater than or equal to 1.1.0 will support this framework, but as of 1.7.0, 'pinv2' is depreciated from scipy.linalg, after which version the old pinv and pinv2 are consolidated to pinv only. Attempting to import gstools with any scipy version greater than 1.7 fails. As a bandaid fix, line 38 of gstoools/kringe/base.py can be changed from:
P_INV = {"pinv": spl.pinv, "pinv2": spl.pinv2, "pinvh": spl.pinvh}
to
P_INV = {"pinv": spl.pinv, "pinv2": spl.pinv, "pinvh": spl.pinvh}
The text was updated successfully, but these errors were encountered: