py3k: The execfile built-in has been removed in python 3

This commit is contained in:
Justus Winter 2011-12-14 11:58:19 +01:00 committed by Sebastian Spaeth
parent 442d405ad3
commit 676ce952d3

View file

@ -7,7 +7,7 @@ from distutils.core import setup
# get the notmuch version number without importing the notmuch module
version_file = os.path.join(os.path.dirname(os.path.abspath(__file__)),
'notmuch', 'version.py')
execfile(version_file)
exec(compile(open(version_file).read(), version_file, 'exec'))
assert __VERSION__, 'Failed to read the notmuch binding version number'
setup(name='notmuch',