projects
/
notmuch.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
442d405
)
py3k: The execfile built-in has been removed in python 3
author
Justus Winter
<4winter@informatik.uni-hamburg.de>
Wed, 14 Dec 2011 10:58:19 +0000
(11:58 +0100)
committer
Sebastian Spaeth
<Sebastian@SSpaeth.de>
Mon, 2 Jan 2012 15:06:59 +0000
(16:06 +0100)
bindings/python/setup.py
patch
|
blob
|
history
diff --git
a/bindings/python/setup.py
b/bindings/python/setup.py
index 286fd1962187b6351036d54d547e69dd9c0b1016..2e58dab1d6a6cc3a6193031f2410b082e385b9eb 100644
(file)
--- a/
bindings/python/setup.py
+++ b/
bindings/python/setup.py
@@
-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')
-exec
file(version_file
)
+exec
(compile(open(version_file).read(), version_file, 'exec')
)
assert __VERSION__, 'Failed to read the notmuch binding version number'
setup(name='notmuch',