Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,13 @@
# documentation root, use os.path.abspath to make it absolute, like shown here.
import os
import sys

from maestrowf import __version__, __version_info__
Comment thread
FrankD412 marked this conversation as resolved.


sys.path.insert(0, os.path.abspath('../../'))


# -- General configuration ------------------------------------------------

# 1.3 needed for autodoc_mock_imports
Expand Down Expand Up @@ -56,9 +61,9 @@
# built documents.
#
# The short X.Y version.
version = u'1.1'
version = ".".join(__version_info__[:2])
# The full version, including alpha/beta/rc tags.
release = u'1.1.8'
release = __version__

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down