Skip to content

Commit f731af4

Browse files
committed
Bumped dependencies.
1 parent 2d28a36 commit f731af4

8 files changed

Lines changed: 22 additions & 23 deletions

File tree

.github/workflows/Pipeline.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ jobs:
112112
uses: actions/checkout@v6
113113

114114
- name: 📥 Download artifacts '${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).package_all }}' from 'Package' job
115-
uses: pyTooling/download-artifact@v7
115+
uses: pyTooling/download-artifact@v8
116116
with:
117117
name: ${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).package_all }}
118118
path: install

doc/Dependency.rst

Lines changed: 9 additions & 9 deletions
Large diffs are not rendered by default.

doc/requirements.txt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
-r ../requirements.txt
22

33
# Enforce latest version on ReadTheDocs
4-
sphinx ~= 8.2
5-
docutils ~= 0.21.0
4+
sphinx ~= 9.1
5+
# docutils ~= 0.22.0
66
docutils_stubs ~= 0.0.22
77

88
# ReadTheDocs Theme
99
sphinx_rtd_theme ~= 3.0
1010

1111
# Sphinx Extenstions
1212
sphinxcontrib-autoprogram ~= 0.1.9
13-
sphinxcontrib-mermaid ~= 1.0
13+
sphinxcontrib-mermaid ~= 2.0
1414
autoapi >= 2.0.1
15-
sphinx_design ~= 0.6.0
15+
sphinx_design ~= 0.7.0
1616
sphinx-copybutton ~= 0.5.0
17-
sphinx_autodoc_typehints ~= 3.5
18-
sphinx_reports ~= 0.9.0
17+
sphinx_autodoc_typehints ~= 3.6
18+
sphinx_reports ~= 0.10.0

pyVersioning/CLI.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ def Run(self) -> NoReturn:
157157
super().Run() # todo: enableAutoComplete ??
158158
except ArgumentError as ex:
159159
self._PrintHeadline()
160-
self.WriteError(ex)
160+
self.WriteError(str(ex))
161161
self.Exit(2)
162162

163163
self.Exit()

pyVersioning/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
__email__ = "Paebbels@gmail.com"
3333
__copyright__ = "2020-2026, Patrick Lehmann"
3434
__license__ = "Apache License, Version 2.0"
35-
__version__ = "0.18.4"
35+
__version__ = "0.18.5"
3636
__keywords__ = ["Python3", "Template", "Versioning", "Git"]
3737

3838
from dataclasses import make_dataclass

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
[build-system]
22
requires = [
33
"setuptools >= 80.0",
4-
"wheel ~= 0.45.0",
5-
"pyTooling ~= 8.10"
4+
"pyTooling ~= 8.12"
65
]
76
build-backend = "setuptools.build_meta"
87

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
pyTooling[terminal] ~= 8.10
2-
ruamel.yaml ~= 0.18.0
1+
pyTooling[terminal] ~= 8.12
2+
ruamel.yaml ~= 0.19.0

run.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Param(
3232
)
3333

3434
$PackageName = "pyVersioning"
35-
$PackageVersion = "0.18.4"
35+
$PackageVersion = "0.18.5"
3636

3737
# set default values
3838
$EnableDebug = [bool]$PSCmdlet.MyInvocation.BoundParameters["Debug"]

0 commit comments

Comments
 (0)