Use actual release info
authorArmin Ronacher <armin.ronacher@active-4.com>
Sun, 6 Feb 2011 11:28:29 +0000 (12:28 +0100)
committerArmin Ronacher <armin.ronacher@active-4.com>
Sun, 6 Feb 2011 11:28:29 +0000 (12:28 +0100)
docs/conf.py

index 0a5157de558f7c221b5730fb15ab747579180ae0..6e990be1c719ca8deb0ffd5ce25de637e0a4ffe3 100644 (file)
@@ -42,9 +42,18 @@ copyright = '2008, Armin Ronacher'
 # other places throughout the built documents.
 #
 # The short X.Y version.
-version = '2.0'
-# The full version, including alpha/beta/rc tags.
-release = '2.0'
+import pkg_resources
+try:
+    release = pkg_resources.get_distribution('Jinja2').version
+except ImportError:
+    print 'To build the documentation, The distribution information of Jinja2'
+    print 'Has to be available.  Either install the package into your'
+    print 'development environment or run "setup.py develop" to setup the'
+    print 'metadata.  A virtualenv is recommended!'
+    sys.exit(1)
+if 'dev' in release:
+    release = release.split('dev')[0] + 'dev'
+version = '.'.join(release.split('.')[:2])
 
 # There are two options for replacing |today|: either, you set today to some
 # non-false value, then it is used: