From 329a00135f55613a8b4b5fd332e25bcc4eb73b33 Mon Sep 17 00:00:00 2001 From: Christoph Hasse Date: Tue, 15 Aug 2023 16:35:51 -0400 Subject: [PATCH] import RectBivariateSpline from scipy.interpolate instead from deprecated fitpack2 submodule --- omas/omas_physics.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/omas/omas_physics.py b/omas/omas_physics.py index b5c77089c..d5a6daeb1 100644 --- a/omas/omas_physics.py +++ b/omas/omas_physics.py @@ -3,7 +3,7 @@ ------- ''' -from scipy.interpolate.fitpack2 import RectBivariateSpline +from scipy.interpolate import RectBivariateSpline from .omas_utils import * from .omas_core import ODS