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 8d2b5fdd00d9aa5c813389e6c1396b1d55d875cd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 5 Jul 2026 15:18:17 +0000 Subject: [PATCH 2/2] [Dependabot]: Update lxml requirement from <7.0,>=6.1 to >=6.1.1,<7.0 Updates the requirements on [lxml](https://github.com/lxml/lxml) to permit the latest version. - [Release notes](https://github.com/lxml/lxml/releases) - [Changelog](https://github.com/lxml/lxml/blob/master/CHANGES.txt) - [Commits](https://github.com/lxml/lxml/compare/lxml-6.1.0...lxml-6.1.1) --- updated-dependencies: - dependency-name: lxml dependency-version: 6.1.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- tests/typing/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/typing/requirements.txt b/tests/typing/requirements.txt index 66ab0a87..2bf534ea 100644 --- a/tests/typing/requirements.txt +++ b/tests/typing/requirements.txt @@ -3,4 +3,4 @@ # Static Type Checking mypy[reports] ~= 2.1 typing_extensions ~= 4.16 -lxml >= 6.1, <7.0 +lxml >= 6.1.1, < 7.0