From fff1c0c9a7dc5873f1ffb1bd897aebb201919265 Mon Sep 17 00:00:00 2001 From: Axel Kohlmeyer Date: Tue, 9 Feb 2021 20:56:33 -0500 Subject: [PATCH] rename numpy.py to numpy_wrapper.py to avoid lookup conflicts with python2.7 --- python/lammps/core.py | 2 +- python/lammps/{numpy.py => numpy_wrapper.py} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename python/lammps/{numpy.py => numpy_wrapper.py} (100%) diff --git a/python/lammps/core.py b/python/lammps/core.py index 1dc135359d..d1bc7bc138 100644 --- a/python/lammps/core.py +++ b/python/lammps/core.py @@ -416,7 +416,7 @@ class lammps(object): :rtype: numpy_wrapper """ if not self._numpy: - from .numpy import numpy_wrapper + from .numpy_wrapper import numpy_wrapper self._numpy = numpy_wrapper(self) return self._numpy diff --git a/python/lammps/numpy.py b/python/lammps/numpy_wrapper.py similarity index 100% rename from python/lammps/numpy.py rename to python/lammps/numpy_wrapper.py