Compare commits

..

2 Commits

Author SHA1 Message Date
Patrick Lehmann
9ee7bcc27a v7.4.4 2026-02-24 00:09:59 +01:00
Patrick Lehmann
796bfa716e Fix application testing (introduced for UnitTesting in v7.0.0). 2026-02-24 00:08:47 +01:00
2 changed files with 2 additions and 2 deletions

View File

@@ -256,7 +256,7 @@ jobs:
if [ -n '${{ inputs.mingw_requirements }}' ]; then
python -m pip install --disable-pip-version-check --break-system-packages ${{ inputs.mingw_requirements }}
else
python -m pip install --disable-pip-version-check --break-system-packages ${{ inputs.requirements }}
python -m pip install --disable-pip-version-check --break-system-packages ${{ steps.requirements.outputs.requirements }}
fi
# TODO: Before scripts?

View File

@@ -36,7 +36,7 @@ __author__ = "Patrick Lehmann"
__email__ = "Paebbels@gmail.com"
__copyright__ = "2017-2026, Patrick Lehmann"
__license__ = "Apache License, Version 2.0"
__version__ = "7.4.3"
__version__ = "7.4.4"
__keywords__ = ["GitHub Actions"]
__issue_tracker__ = "https://GitHub.com/pyTooling/Actions/issues"