Skip to content

Commit 796bfa7

Browse files
committed
Fix application testing (introduced for UnitTesting in v7.0.0).
1 parent d63a910 commit 796bfa7

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/ApplicationTesting.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ jobs:
256256
if [ -n '${{ inputs.mingw_requirements }}' ]; then
257257
python -m pip install --disable-pip-version-check --break-system-packages ${{ inputs.mingw_requirements }}
258258
else
259-
python -m pip install --disable-pip-version-check --break-system-packages ${{ inputs.requirements }}
259+
python -m pip install --disable-pip-version-check --break-system-packages ${{ steps.requirements.outputs.requirements }}
260260
fi
261261
262262
# TODO: Before scripts?

myPackage/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
__email__ = "Paebbels@gmail.com"
3737
__copyright__ = "2017-2026, Patrick Lehmann"
3838
__license__ = "Apache License, Version 2.0"
39-
__version__ = "7.4.3"
39+
__version__ = "7.4.4"
4040
__keywords__ = ["GitHub Actions"]
4141
__issue_tracker__ = "https://GitHub.com/pyTooling/Actions/issues"
4242

0 commit comments

Comments
 (0)