From 4a795f3186773f5a821a908b573b7c836c335a10 Mon Sep 17 00:00:00 2001 From: Nicolas ROCHE Date: Mon, 9 Mar 2020 16:40:52 +0100 Subject: [PATCH] python3: remove print from setup.py (#40570) --- setup.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/setup.py b/setup.py index 80f8fd5..02a932b 100644 --- a/setup.py +++ b/setup.py @@ -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')