diff options
author | W. Trevor King <wking@drexel.edu> | 2010-02-05 20:09:58 -0500 |
---|---|---|
committer | W. Trevor King <wking@drexel.edu> | 2010-02-05 20:09:58 -0500 |
commit | 4109434843ecdf2e73a010fcbb37cc3d404ef8ef (patch) | |
tree | f27c722eca621b05522660247f2ba7bbbe99d86a /doc/conf.py | |
parent | 52999e64546aa1ca5aba14e16311d5487dbb6ac1 (diff) | |
download | bugseverywhere-4109434843ecdf2e73a010fcbb37cc3d404ef8ef.tar.gz |
Sphynx now gets version string automatically.
Diffstat (limited to 'doc/conf.py')
-rw-r--r-- | doc/conf.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/doc/conf.py b/doc/conf.py index 68b279f..b2dab25 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -13,6 +13,8 @@ import sys, os +import libbe.version + # If extensions (or modules to document with autodoc) are in another directory, # add these directories to sys.path here. If the directory is relative to the # documentation root, use os.path.abspath to make it absolute, like shown here. @@ -45,9 +47,9 @@ copyright = u'2010, W. Trevor King' # built documents. # # The short X.Y version. -version = '432' +version = libbe.version.version() # The full version, including alpha/beta/rc tags. -release = '432' +release = libbe.version.version() # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. |