Skip to content

Commit

Permalink
Bumped version to v0.3.3.
Browse files Browse the repository at this point in the history
  • Loading branch information
Paebbels committed Nov 12, 2024
1 parent c9aeae6 commit 3be3c86
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ doc/pySystemRDLModel/**/*.*
# BuildTheDocs
doc/_theme/**/*.*

# IntelliJ project files
# PyCharm project files
/.idea/workspace.xml

# Git files
Expand Down
17 changes: 12 additions & 5 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,21 @@

from pyTooling.Packaging import extractVersionInformation

# ==============================================================================
# Project configuration
# ==============================================================================
githubNamespace = "edaa-org"
project = "pySystemRDLModel"
directoryName = project.replace('.', '/')

# ==============================================================================
# Project paths
# ==============================================================================
ROOT = Path(__file__).resolve().parent

sys_path.insert(0, abspath("."))
sys_path.insert(0, abspath(".."))
sys_path.insert(0, abspath("../pySystemRDLModel"))
sys_path.insert(0, abspath(f"../{directoryName}"))


# ==============================================================================
Expand All @@ -20,10 +30,7 @@
# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
# built documents.
githubNamespace = "edaa-org"
project = "pySystemRDLModel"

packageInformationFile = Path(f"../{project.replace('.', '/')}/__init__.py")
packageInformationFile = Path(f"../{directoryName}/__init__.py")
versionInformation = extractVersionInformation(packageInformationFile)

author = versionInformation.Author
Expand Down
2 changes: 0 additions & 2 deletions doc/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,3 @@ sphinx_design ~= 0.6.1
sphinx-copybutton >= 0.5.2
sphinx_autodoc_typehints ~= 2.5
sphinx_reports ~= 0.7

# BuildTheDocs Extensions (mostly patched Sphinx extensions)
2 changes: 1 addition & 1 deletion pySystemRDLModel/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
__email__ = "Paebbels@gmail.com"
__copyright__ = "2023-2024, Patrick Lehmann"
__license__ = "Apache License, Version 2.0"
__version__ = "0.3.2"
__version__ = "0.3.3"


@export
Expand Down

0 comments on commit 3be3c86

Please sign in to comment.