Skip to content

Commit 3be3c86

Browse files
committed
Bumped version to v0.3.3.
1 parent c9aeae6 commit 3be3c86

File tree

4 files changed

+14
-9
lines changed

4 files changed

+14
-9
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ doc/pySystemRDLModel/**/*.*
3030
# BuildTheDocs
3131
doc/_theme/**/*.*
3232

33-
# IntelliJ project files
33+
# PyCharm project files
3434
/.idea/workspace.xml
3535

3636
# Git files

doc/conf.py

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,21 @@
77

88
from pyTooling.Packaging import extractVersionInformation
99

10+
# ==============================================================================
11+
# Project configuration
12+
# ==============================================================================
13+
githubNamespace = "edaa-org"
14+
project = "pySystemRDLModel"
15+
directoryName = project.replace('.', '/')
16+
17+
# ==============================================================================
18+
# Project paths
19+
# ==============================================================================
1020
ROOT = Path(__file__).resolve().parent
1121

1222
sys_path.insert(0, abspath("."))
1323
sys_path.insert(0, abspath(".."))
14-
sys_path.insert(0, abspath("../pySystemRDLModel"))
24+
sys_path.insert(0, abspath(f"../{directoryName}"))
1525

1626

1727
# ==============================================================================
@@ -20,10 +30,7 @@
2030
# The version info for the project you're documenting, acts as replacement for
2131
# |version| and |release|, also used in various other places throughout the
2232
# built documents.
23-
githubNamespace = "edaa-org"
24-
project = "pySystemRDLModel"
25-
26-
packageInformationFile = Path(f"../{project.replace('.', '/')}/__init__.py")
33+
packageInformationFile = Path(f"../{directoryName}/__init__.py")
2734
versionInformation = extractVersionInformation(packageInformationFile)
2835

2936
author = versionInformation.Author

doc/requirements.txt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,3 @@ sphinx_design ~= 0.6.1
1515
sphinx-copybutton >= 0.5.2
1616
sphinx_autodoc_typehints ~= 2.5
1717
sphinx_reports ~= 0.7
18-
19-
# BuildTheDocs Extensions (mostly patched Sphinx extensions)

pySystemRDLModel/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
__email__ = "Paebbels@gmail.com"
5353
__copyright__ = "2023-2024, Patrick Lehmann"
5454
__license__ = "Apache License, Version 2.0"
55-
__version__ = "0.3.2"
55+
__version__ = "0.3.3"
5656

5757

5858
@export

0 commit comments

Comments
 (0)