mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-25 20:38:08 +01:00
py3k: The execfile built-in has been removed in python 3
This commit is contained in:
parent
442d405ad3
commit
676ce952d3
1 changed files with 1 additions and 1 deletions
|
@ -7,7 +7,7 @@ from distutils.core import setup
|
||||||
# get the notmuch version number without importing the notmuch module
|
# get the notmuch version number without importing the notmuch module
|
||||||
version_file = os.path.join(os.path.dirname(os.path.abspath(__file__)),
|
version_file = os.path.join(os.path.dirname(os.path.abspath(__file__)),
|
||||||
'notmuch', 'version.py')
|
'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'
|
assert __VERSION__, 'Failed to read the notmuch binding version number'
|
||||||
|
|
||||||
setup(name='notmuch',
|
setup(name='notmuch',
|
||||||
|
|
Loading…
Reference in a new issue