From 2b47587f8a4eae7c858c88c63ff8ef33300c5d65 Mon Sep 17 00:00:00 2001 From: Andreas Kloeckner <inform@tiker.net> Date: Thu, 19 Nov 2020 23:12:19 -0600 Subject: [PATCH] Fix sympy interop import in test --- test/test_pymbolic.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_pymbolic.py b/test/test_pymbolic.py index 52d40e4..2b74738 100644 --- a/test/test_pymbolic.py +++ b/test/test_pymbolic.py @@ -127,7 +127,7 @@ def test_sympy_interaction(): s1_expr = 1/f(x/sp.sqrt(x**2+y**2)).diff(x, 5) # pylint:disable=not-callable - from pymbolic.sympy_interface import ( + from pymbolic.interop.sympy import ( SympyToPymbolicMapper, PymbolicToSympyMapper) s2p = SympyToPymbolicMapper() -- GitLab