setup: delete print statement (#38781)

This commit is contained in:
Emmanuel Cazenave 2020-01-24 12:16:12 +01:00
parent ae09ae97b6
commit 24ee622c2c
1 changed files with 0 additions and 2 deletions

View File

@ -28,7 +28,6 @@ def get_version():
class eo_sdist(sdist):
def run(self):
print "creating VERSION file"
if os.path.exists('VERSION'):
os.remove('VERSION')
version = get_version()
@ -36,7 +35,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')