Skip to content

Commit bd8a183

Browse files
committed
Updated dunder-variables.
1 parent 80643ee commit bd8a183

4 files changed

Lines changed: 13 additions & 10 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[build-system]
22
requires = [
33
"setuptools >= 83.0",
4-
"pyTooling ~= 8.11"
4+
"pyTooling ~= 8.15"
55
]
66
build-backend = "setuptools.build_meta"
77

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
pyTooling >= 8.0
2-
pyEDAA.Reports ~= 0.17.3
1+
pyTooling >= 8.15
2+
pyEDAA.Reports ~= 0.17.4
33
sphinx >= 9.1, < 10.0
44
docutils >= 0.22.0
55
docutils_stubs >= 0.0.22

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 = "sphinx_reports"
35-
$PackageVersion = "0.9.10"
35+
$PackageVersion = "0.11.1"
3636

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

sphinx_reports/__init__.py

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -39,15 +39,18 @@
3939
* :ref:`DEP`
4040
4141
"""
42-
__author__ = "Patrick Lehmann"
43-
__email__ = "Paebbels@gmail.com"
44-
__copyright__ = "2023-2026, Patrick Lehmann"
45-
__license__ = "Apache License, Version 2.0"
46-
__version__ = "0.11.0"
47-
__keywords__ = [
42+
__author__ = "Patrick Lehmann"
43+
__email__ = "Paebbels@gmail.com"
44+
__copyright__ = "2023-2026, Patrick Lehmann"
45+
__license__ = "Apache License, Version 2.0"
46+
__version__ = "0.11.1"
47+
__keywords__ = [
4848
"Python3", "Sphinx", "Extension", "Report", "doc-string", "interrogate", "Code Coverage", "Coverage",
4949
"Documentation Coverage", "Unittest", "Dependencies", "Summary"
5050
]
51+
__project_url__ = "https://github.com/pyTooling/sphinx-reports"
52+
__documentation_url__ = "https://pyTooling.github.io/sphinx-reports"
53+
__issue_tracker_url__ = "https://GitHub.com/pyTooling/sphinx-reports/issues"
5154

5255
from hashlib import md5
5356
from pathlib import Path

0 commit comments

Comments
 (0)