From 36a62f1b62150951f8dc92a05f60778a3149409f Mon Sep 17 00:00:00 2001 From: Markus Holtermann Date: Fri, 19 Sep 2014 09:28:50 +0200 Subject: Change version into a string --- docs/conf.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'docs') diff --git a/docs/conf.py b/docs/conf.py index 949aee2..ec71904 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -17,7 +17,7 @@ import sys sys.path.insert(0, os.path.join(os.path.dirname(__file__), '..')) -from bvggrabber import get_version +from bvggrabber import __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 @@ -47,16 +47,16 @@ master_doc = 'index' # General information about the project. project = 'BVG-Grabber' -copyright = '2013, Markus Holtermann, Christian Struck' +copyright = '2013-2014, Markus Holtermann, Christian Struck' # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the # built documents. # # The short X.Y version. -version = get_version() +version = __version__ # The full version, including alpha/beta/rc tags. -release = get_version() +release = __version__ # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. -- cgit v1.2.3