From 3c018edc0bf51f2ae507f29f2062fc9635dcd2fe Mon Sep 17 00:00:00 2001 From: Patrick Lehmann Date: Sun, 5 Jul 2026 17:13:49 +0200 Subject: [PATCH 1/2] Updated dunder-variables. --- run.ps1 | 2 +- sphinx_reports/__init__.py | 15 +++++++++------ 2 files changed, 10 insertions(+), 7 deletions(-) diff --git a/run.ps1 b/run.ps1 index 13f574f2..477fb9fb 100644 --- a/run.ps1 +++ b/run.ps1 @@ -32,7 +32,7 @@ Param( ) $PackageName = "sphinx_reports" -$PackageVersion = "0.9.10" +$PackageVersion = "0.11.1" # set default values $EnableDebug = [bool]$PSCmdlet.MyInvocation.BoundParameters["Debug"] diff --git a/sphinx_reports/__init__.py b/sphinx_reports/__init__.py index 384b8da8..b016f5cf 100644 --- a/sphinx_reports/__init__.py +++ b/sphinx_reports/__init__.py @@ -39,15 +39,18 @@ * :ref:`DEP` """ -__author__ = "Patrick Lehmann" -__email__ = "Paebbels@gmail.com" -__copyright__ = "2023-2026, Patrick Lehmann" -__license__ = "Apache License, Version 2.0" -__version__ = "0.11.0" -__keywords__ = [ +__author__ = "Patrick Lehmann" +__email__ = "Paebbels@gmail.com" +__copyright__ = "2023-2026, Patrick Lehmann" +__license__ = "Apache License, Version 2.0" +__version__ = "0.11.1" +__keywords__ = [ "Python3", "Sphinx", "Extension", "Report", "doc-string", "interrogate", "Code Coverage", "Coverage", "Documentation Coverage", "Unittest", "Dependencies", "Summary" ] +__project_url__ = "https://github.com/pyTooling/sphinx-reports" +__documentation_url__ = "https://pyTooling.github.io/sphinx-reports" +__issue_tracker_url__ = "https://GitHub.com/pyTooling/sphinx-reports/issues" from hashlib import md5 from pathlib import Path From c76cdd5867a2ca3fe037b9c5af4cb3ead2f8f4c2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 5 Jul 2026 15:18:31 +0000 Subject: [PATCH 2/2] [Dependabot]: Update docutils requirement from >=0.22.0 to >=0.23 Updates the requirements on [docutils](https://github.com/rtfd/recommonmark) to permit the latest version. - [Changelog](https://github.com/readthedocs/recommonmark/blob/master/CHANGELOG.md) - [Commits](https://github.com/rtfd/recommonmark/commits) --- updated-dependencies: - dependency-name: docutils dependency-version: 0.22.4 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index ea90fb23..7adfd0ee 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,7 +1,7 @@ pyTooling >= 8.0 pyEDAA.Reports ~= 0.17.3 sphinx >= 9.1, < 10.0 -docutils >= 0.22.0 +docutils >= 0.23 docutils_stubs >= 0.0.22 Coverage ~= 7.15