diff --git a/docs/source/conf.py b/docs/source/conf.py index a85e9e3..088b878 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -24,7 +24,10 @@ author = 'Anwar O. Nunez-Elizalde' # The full version, including alpha/beta/rc tags -release = '0.0.3' +import moten # noqa +# The short X.Y version. +version = ".".join(moten.__version__.split(".")[:2]) +release = moten.__version__ # -- General configuration ---------------------------------------------------