From d3a23817f14e5b83741332f983df3c792495f894 Mon Sep 17 00:00:00 2001 From: Axel Kohlmeyer Date: Thu, 16 Mar 2023 17:25:11 -0400 Subject: [PATCH] disable purging old wheel files --- python/install.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/python/install.py b/python/install.py index 561e93caa9..6c27ebd0bd 100644 --- a/python/install.py +++ b/python/install.py @@ -63,10 +63,10 @@ if os.path.isdir(os.path.join(olddir,"build")): print("Cleaning old build directory") shutil.rmtree(os.path.join(olddir,"build")) -print("Purging existing wheels...") -for wheel in glob.glob('lammps-*.whl'): - print("deleting " + wheel) - os.remove(wheel) +#print("Purging existing wheels...") +#for wheel in glob.glob('lammps-*.whl'): +# print("deleting " + wheel) +# os.remove(wheel) # copy shared object to the current folder so that # it will show up in the installation at the expected location