Skip to content

Commit

Permalink
👷 [maykinmedia/open-api-framework#92] Fix docs build
Browse files Browse the repository at this point in the history
  • Loading branch information
stevenbal committed Dec 20, 2024
1 parent 7081bca commit 3fa7edf
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
4 changes: 4 additions & 0 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,7 @@ replace = "version": "{new_version}",
[bumpversion:file:publiccode.yaml]
search = softwareVersion: {current_version}
replace = softwareVersion: {new_version}

[bumpversion:file:src/openzaak/__init__.py]
search = __version__ = "{current_version}"
replace = __version__ = "{new_version}"
6 changes: 3 additions & 3 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

sys.path.insert(0, os.path.abspath("../src"))

import objects # noqa isort:skip
import objecttypes # noqa isort:skip

# from objects.setup import setup_env # noqa isort:skip

Expand All @@ -26,10 +26,10 @@

project = "Objects and Objecttypes API"
copyright = "2020, Maykin Media"
author = objects.__author__
author = objecttypes.__author__

# The full version, including alpha/beta/rc tags
release = objects.__version__
release = objecttypes.__version__


# -- General configuration ---------------------------------------------------
Expand Down
3 changes: 3 additions & 0 deletions src/objecttypes/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
__version__ = "2.2.2"
__author__ = "Maykin Media"
__homepage__ = "https://github.com/maykinmedia/objecttypes-api"

0 comments on commit 3fa7edf

Please sign in to comment.