From c0cd2996609ee28b96f6492520bce0f726983634 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Wed, 29 Jan 2020 12:07:36 +0100 Subject: [PATCH] build: remove unnecessary prints from setup.py --- setup.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/setup.py b/setup.py index 8b33fc8..37b6fd2 100755 --- a/setup.py +++ b/setup.py @@ -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')