python3: remove print from setup.py (#40570)

This commit is contained in:
Nicolas Roche 2020-03-09 16:40:52 +01:00
parent eadd66615b
commit 4a795f3186
1 changed files with 0 additions and 2 deletions

View File

@ -13,7 +13,6 @@ from setuptools.command.install_lib import install_lib as _install_lib
class eo_sdist(sdist):
def run(self):
print "creating VERSION file"
if os.path.exists('VERSION'):
os.remove('VERSION')
version = get_version()
@ -21,7 +20,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')