misc: python 3 compatibility (#12805)

This commit is contained in:
Frédéric Péters 2016-07-29 23:27:29 +02:00
parent 34bbb37ab4
commit 054e0a8922
1 changed files with 3 additions and 3 deletions

View File

@ -20,7 +20,7 @@ from setuptools import setup, find_packages
class eo_sdist(sdist):
def run(self):
print "creating VERSION file"
print("creating VERSION file")
if os.path.exists('VERSION'):
os.remove('VERSION')
version = get_version()
@ -28,7 +28,7 @@ class eo_sdist(sdist):
version_file.write(version)
version_file.close()
sdist.run(self)
print "removing VERSION file"
print("removing VERSION file")
if os.path.exists('VERSION'):
os.remove('VERSION')
@ -44,7 +44,7 @@ def get_version():
stdout=subprocess.PIPE, stderr=subprocess.PIPE)
result = p.communicate()[0]
if p.returncode == 0:
return result.split()[0][1:].replace('-', '.')
return result.decode('ascii').split()[0][1:].replace('-', '.')
else:
return '0.0.0-%s' % len(
subprocess.check_output(