Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion run.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down
15 changes: 9 additions & 6 deletions sphinx_reports/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tests/typing/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Loading