Fix docs so they pull version from _version.py
This commit is contained in:
parent
b9705b16a1
commit
9454f6c856
@ -17,6 +17,7 @@ import sys, os
|
||||
# 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.
|
||||
sys.path.insert(0, os.path.abspath('.'))
|
||||
sys.path.insert(0, os.path.abspath(os.path.join('..', '..')))
|
||||
|
||||
# -- General configuration -----------------------------------------------------
|
||||
|
||||
@ -47,10 +48,15 @@ copyright = u'2011, 2012 GNU MediaGoblin contributors'
|
||||
# |version| and |release|, also used in various other places throughout the
|
||||
# built documents.
|
||||
#
|
||||
try:
|
||||
from mediagoblin._version import __version__
|
||||
# The short X.Y version.
|
||||
version = '0.3.1'
|
||||
version = '.'.join(__version__.split('.')[0:2])
|
||||
# The full version, including alpha/beta/rc tags.
|
||||
release = '0.3.1.dev'
|
||||
release = __version__
|
||||
except ImportError:
|
||||
version = 'unknown'
|
||||
release = 'unknown'
|
||||
|
||||
# The language for content autogenerated by Sphinx. Refer to documentation
|
||||
# for a list of supported languages.
|
||||
|
Loading…
x
Reference in New Issue
Block a user