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 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