Skip to content
This repository has been archived by the owner on Mar 13, 2024. It is now read-only.

Commit

Permalink
Making our documentation versioning dynamic.
Browse files Browse the repository at this point in the history
  • Loading branch information
rdegges committed Dec 30, 2014
1 parent 95a6126 commit 055b9e7
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions docs/source/conf.py
Expand Up @@ -12,13 +12,19 @@
# All configuration values have a default; values that are commented out
# serve to show the default.

import sys
import os

from os.path import abspath
from sys import path


# 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.
#sys.path.insert(0, os.path.abspath('.'))
path.insert(0, abspath('../..'))


from sslify import __version__


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

Expand Down Expand Up @@ -54,9 +60,9 @@
# built documents.
#
# The short X.Y version.
version = '0.2.6'
version = __version__
# The full version, including alpha/beta/rc tags.
release = '0.2.6'
release = __version__

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

0 comments on commit 055b9e7

Please sign in to comment.