Skip to content
Merged
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 .github/workflows/ApplicationTesting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ jobs:
"wheel": "python-wheel:p",
"pyEDAA.ProjectModel": "python-ruamel-yaml:p python-ruamel.yaml.clib:p python-lxml:p",
"pyEDAA.Reports": "python-ruamel-yaml:p python-ruamel.yaml.clib:p python-lxml:p",
"sphinx-reports": "python-markupsafe:p python-pyaml:p python-types-pyyaml:p",
"sphinx_reports": "python-markupsafe:p python-pyaml:p python-types-pyyaml:p",
}
subPackages = {
"pytooling": {
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/UnitTesting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ jobs:
"wheel": "python-wheel:p",
"pyedaa.projectmodel": "python-ruamel-yaml:p python-ruamel.yaml.clib:p python-lxml:p",
"pyedaa.reports": "python-ruamel-yaml:p python-ruamel.yaml.clib:p python-lxml:p",
"sphinx-reports": "python-markupsafe:p python-pyaml:p python-types-pyyaml:p",
"sphinx_reports": "python-markupsafe:p python-pyaml:p python-types-pyyaml:p",
}
subPackages = {
"pytooling": {
Expand Down
2 changes: 1 addition & 1 deletion dist/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
wheel ~= 0.46.3
wheel ~= 0.47.0
twine ~= 6.2
2 changes: 1 addition & 1 deletion doc/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ Example Pipelines
.. code-block:: toml

[build-system]
requires = ["setuptools >= 80.0", "pyTooling ~= 8.14"]
requires = ["setuptools >= 83.0", "pyTooling ~= 8.15"]
build-backend = "setuptools.build_meta"

[tool.mypy]
Expand Down
4 changes: 2 additions & 2 deletions doc/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
-r ../requirements.txt

pyTooling ~= 8.14
pyTooling ~= 8.15

# Enforce latest version on ReadTheDocs
sphinx ~= 9.1
Expand All @@ -15,5 +15,5 @@ sphinxcontrib-mermaid ~= 2.0
autoapi >= 2.0.1
sphinx_design ~= 0.7.0
sphinx-copybutton >= 0.5.2
sphinx_autodoc_typehints ~= 3.10
sphinx_autodoc_typehints ~= 3.12
sphinx_reports ~= 0.11.0
2 changes: 1 addition & 1 deletion myFramework/Extension/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
__email__ = "Paebbels@gmail.com"
__copyright__ = "2017-2026, Patrick Lehmann"
__license__ = "Apache License, Version 2.0"
__version__ = "7.10.1"
__version__ = "7.11.1"
__keywords__ = ["GitHub Actions"]
__issue_tracker__ = "https://GitHub.com/pyTooling/Actions/issues"

Expand Down
2 changes: 1 addition & 1 deletion myPackage/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
__email__ = "Paebbels@gmail.com"
__copyright__ = "2017-2026, Patrick Lehmann"
__license__ = "Apache License, Version 2.0"
__version__ = "7.10.1"
__version__ = "7.11.1"
__keywords__ = ["GitHub Actions"]
__issue_tracker__ = "https://GitHub.com/pyTooling/Actions/issues"

Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[build-system]
requires = [
"setuptools >= 80.0",
"pyTooling ~= 8.14"
"setuptools >= 83.0",
"pyTooling ~= 8.15"
]
build-backend = "setuptools.build_meta"

Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
pyTooling ~= 8.14
pyTooling ~= 8.15
2 changes: 1 addition & 1 deletion run.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ Param(

$ProjectName = "Actions"
$PackageName = "myPackage"
$PackageVersion = "7.10.1"
$PackageVersion = "7.11.1"
$PythonVersion = "3.14"
$LaTeXDocument = "${ProjectName}.tex"

Expand Down
6 changes: 3 additions & 3 deletions tests/typing/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
-r ../../requirements.txt

# Static Type Checking
mypy[reports] ~= 1.19
typing_extensions ~= 4.15
lxml >= 5.4, <7.0
mypy[reports] ~= 2.1
typing_extensions ~= 4.16
lxml >= 6.1, <7.0
4 changes: 2 additions & 2 deletions tests/unit/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
-r ../../requirements.txt

# Coverage collection
Coverage ~= 7.14
Coverage ~= 7.15

# Test Runner
pytest ~= 9.0
pytest ~= 9.1
pytest-cov ~= 7.1
Loading