Skip to content
Snippets Groups Projects
Commit 51da50fa authored by Holger's avatar Holger
Browse files

Fix version in doc

parent d0b9642b
No related branches found
No related tags found
2 merge requests!5Taken current version of master branch in the https://github.com/holgern/beem,!4Original changes pushed to master at https://github.com/holgern/beem
"""THIS FILE IS GENERATED FROM beem SETUP.PY.""" """THIS FILE IS GENERATED FROM beem SETUP.PY."""
version = '0.23.1' version = '0.23.2'
"""THIS FILE IS GENERATED FROM beem SETUP.PY.""" """THIS FILE IS GENERATED FROM beem SETUP.PY."""
version = '0.23.1' version = '0.23.2'
"""THIS FILE IS GENERATED FROM beem SETUP.PY.""" """THIS FILE IS GENERATED FROM beem SETUP.PY."""
version = '0.23.1' version = '0.23.2'
"""THIS FILE IS GENERATED FROM beem SETUP.PY.""" """THIS FILE IS GENERATED FROM beem SETUP.PY."""
version = '0.23.1' version = '0.23.2'
...@@ -16,6 +16,8 @@ ...@@ -16,6 +16,8 @@
import sys import sys
import os import os
import shlex import shlex
import beem
from packaging.version import parse
# If extensions (or modules to document with autodoc) are in another directory, # 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 # add these directories to sys.path here. If the directory is relative to the
...@@ -49,17 +51,18 @@ master_doc = 'index' ...@@ -49,17 +51,18 @@ master_doc = 'index'
# General information about the project. # General information about the project.
project = 'beem' project = 'beem'
copyright = '2017, ChainSquad GmbH, 2018-2019, Holger Nahrstaedt' copyright = '2017, ChainSquad GmbH, 2018-2020, Holger Nahrstaedt'
author = 'Holger Nahrstaedt' author = 'Holger Nahrstaedt'
# The version info for the project you're documenting, acts as replacement for # The version info for the project you're documenting, acts as replacement for
# |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. # The short X.Y version
version = '0.20' version = parse(beem.__version__).base_version
# The full version, including alpha/beta/rc tags. version = ".".join(version.split(".")[:2])
release = '0.20.20' # The full version, including alpha/beta/rc tags
release = beem.__version__
# 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.
......
...@@ -16,7 +16,7 @@ except LookupError: ...@@ -16,7 +16,7 @@ except LookupError:
ascii = codecs.lookup('ascii') ascii = codecs.lookup('ascii')
codecs.register(lambda name, enc=ascii: {True: enc}.get(name == 'mbcs')) codecs.register(lambda name, enc=ascii: {True: enc}.get(name == 'mbcs'))
VERSION = '0.23.1' VERSION = '0.23.2'
tests_require = ['mock >= 2.0.0', 'pytest', 'pytest-mock', 'parameterized'] tests_require = ['mock >= 2.0.0', 'pytest', 'pytest-mock', 'parameterized']
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment