disable purging old wheel files

This commit is contained in:
Axel Kohlmeyer
2023-03-16 17:25:11 -04:00
parent 4a66389bf1
commit d3a23817f1

View File

@ -63,10 +63,10 @@ if os.path.isdir(os.path.join(olddir,"build")):
print("Cleaning old build directory") print("Cleaning old build directory")
shutil.rmtree(os.path.join(olddir,"build")) shutil.rmtree(os.path.join(olddir,"build"))
print("Purging existing wheels...") #print("Purging existing wheels...")
for wheel in glob.glob('lammps-*.whl'): #for wheel in glob.glob('lammps-*.whl'):
print("deleting " + wheel) # print("deleting " + wheel)
os.remove(wheel) # os.remove(wheel)
# copy shared object to the current folder so that # copy shared object to the current folder so that
# it will show up in the installation at the expected location # it will show up in the installation at the expected location