[PATCH 4/4] doc: automagically read version from file

Subject: [PATCH 4/4] doc: automagically read version from file

Date: Wed, 5 Mar 2014 10:56:35 -0400

To: notmuch@notmuchmail.org

Cc:

From: David Bremner


This avoids having to recreate the update-man-versions rule
---
 doc/conf.py | 12 +++++++++---
 1 file changed, 9 insertions(+), 3 deletions(-)

diff --git a/doc/conf.py b/doc/conf.py
index 6c2806d..a926fe4 100644
--- a/doc/conf.py
+++ b/doc/conf.py
@@ -14,10 +14,16 @@ master_doc = 'index'
 project = u'notmuch'
 copyright = u'2014, Carl Worth and many others'
 
-# The short X.Y version.
-version = '0.17'
+location = os.path.dirname(__file__)
+
+for pathdir in ['.', '..']:
+    version_file = os.path.join(location,pathdir,'version')
+    if os.path.exists(version_file):
+        with open(version_file,'r') as infile:
+            version=infile.read().replace('\n','')
+
 # The full version, including alpha/beta/rc tags.
-release = '0.17'
+release = version
 
 # List of patterns, relative to source directory, that match files and
 # directories to ignore when looking for source files.
-- 
1.8.5.3


Thread: