From 35517664a498b4d729eb57289eb3efd5754439fc Mon Sep 17 00:00:00 2001 From: Sean Kavanagh Date: Wed, 2 Oct 2024 19:33:42 -0400 Subject: [PATCH] Fix scipy polyval import --- galore/cross_sections.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/galore/cross_sections.py b/galore/cross_sections.py index 49b4970..04c5cbf 100644 --- a/galore/cross_sections.py +++ b/galore/cross_sections.py @@ -5,9 +5,8 @@ import sqlite3 -from scipy import polyval from numpy import fromstring as np_fromstr -from numpy import exp, log +from numpy import exp, log, polyval def get_cross_sections(weighting, elements=None):