fetched mlz version

- before some chamges in the gerrit pipline

Change-Id: I33eb2d75f83345a7039d0fb709e66defefb1c3e0
This commit is contained in:
2023-05-02 11:31:30 +02:00
parent b19a8c2e5c
commit da15df076a
765 changed files with 35890 additions and 59302 deletions

View File

@ -27,7 +27,7 @@ from os import path
# Add import path for inplace usage
sys.path.insert(0, path.abspath(path.join(path.dirname(__file__), '..', '..')))
from secop.version import get_version
from frappy.version import get_version
# -- General configuration ------------------------------------------------
@ -58,7 +58,7 @@ master_doc = 'index'
# General information about the project.
project = 'Frappy'
copyright = '2017-2021, Enrico Faulhaber, Markus Zolliker,'
copyright = '2017-2023, Enrico Faulhaber, Markus Zolliker'
#copyright = '2017, SECoP Committee'
author = 'Enrico Faulhaber, Markus Zolliker'
@ -71,16 +71,15 @@ try:
release = get_version()
# The short X.Y version.
version = release.split('-')[0]
except ValueError as e:
print('WARNING: %s' % e)
except ValueError:
pass
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
#
# This is also used if you do content translation via gettext catalogs.
# Usually you set "language" from the command line for these cases.
language = None
language = "en"
# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
@ -215,9 +214,9 @@ epub_exclude_files = ['search.html']
# Example configuration for intersphinx: refer to the Python standard library.
intersphinx_mapping = {'https://docs.python.org/': None}
# intersphinx_mapping = {'https://docs.python.org/3/': None}
from secop.lib.classdoc import class_doc_handler
from frappy.lib.classdoc import class_doc_handler
def setup(app):
app.connect('autodoc-process-docstring', class_doc_handler)
app.connect('autodoc-process-docstring', class_doc_handler)