|
@@ -17,13 +17,11 @@
|
|
# add these directories to sys.path here. If the directory is relative to the
|
|
# 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.
|
|
# documentation root, use os.path.abspath to make it absolute, like shown here.
|
|
#
|
|
#
|
|
-import os
|
|
|
|
import sys
|
|
import sys
|
|
|
|
|
|
|
|
+from os import path
|
|
from unittest.mock import MagicMock
|
|
from unittest.mock import MagicMock
|
|
|
|
|
|
-#sys.path.append(os.path.abspath('../'))
|
|
|
|
-
|
|
|
|
class MockModule(MagicMock):
|
|
class MockModule(MagicMock):
|
|
@classmethod
|
|
@classmethod
|
|
def __getattr__(cls, name):
|
|
def __getattr__(cls, name):
|
|
@@ -37,6 +35,8 @@ sys.modules.update((mod_name, MockModule()) for mod_name in MOCK_MODULES)
|
|
import lakesuperior.env_setup
|
|
import lakesuperior.env_setup
|
|
|
|
|
|
|
|
|
|
|
|
+here = path.abspath(path.dirname(__file__))
|
|
|
|
+
|
|
# -- General configuration ------------------------------------------------
|
|
# -- General configuration ------------------------------------------------
|
|
|
|
|
|
# If your documentation needs a minimal Sphinx version, state it here.
|
|
# If your documentation needs a minimal Sphinx version, state it here.
|
|
@@ -74,10 +74,9 @@ author = 'Stefano Cossu'
|
|
# |version| and |release|, also used in various other places throughout the
|
|
# |version| and |release|, also used in various other places throughout the
|
|
# built documents.
|
|
# built documents.
|
|
#
|
|
#
|
|
-# The short X.Y version.
|
|
|
|
-version = '1.0-alpha'
|
|
|
|
-# The full version, including alpha/beta/rc tags.
|
|
|
|
-release = '1.0.0-alpha.8'
|
|
|
|
|
|
+# Version and release are the same.
|
|
|
|
+with open(path.realpath(path.join(here, '..', 'VERSION'))) as fh:
|
|
|
|
+ version = release = fh.readlines()[0]
|
|
|
|
|
|
# The language for content autogenerated by Sphinx. Refer to documentation
|
|
# The language for content autogenerated by Sphinx. Refer to documentation
|
|
# for a list of supported languages.
|
|
# for a list of supported languages.
|