build: remove unnecessary prints from setup.py

This commit is contained in:
Frédéric Péters 2020-01-29 12:07:36 +01:00
parent f35458c2fc
commit c0cd299660
1 changed files with 0 additions and 2 deletions

View File

@ -10,7 +10,6 @@ from distutils.command.sdist import sdist
class eo_sdist(sdist):
def run(self):
print "creating VERSION file"
if os.path.exists('VERSION'):
os.remove('VERSION')
version = get_version()
@ -18,7 +17,6 @@ class eo_sdist(sdist):
version_file.write(version)
version_file.close()
sdist.run(self)
print "removing VERSION file"
if os.path.exists('VERSION'):
os.remove('VERSION')