Skip to content

Commit 78fdb58

Browse files
authored
v4.2.0
2 parents 679ec24 + a456635 commit 78fdb58

15 files changed

+45
-44
lines changed

.github/workflows/NightlyRelease.yml

+21-21
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ jobs:
124124
printf "%s\n" "${ANSI_LIGHT_YELLOW}[NOT FOUND]${ANSI_NOCOLOR}"
125125
else
126126
printf "%s\n" "${ANSI_LIGHT_RED}[FAILED]${ANSI_NOCOLOR}"
127-
printf "%s\n" "${ANSI_LIGHT_RED}Couldn't delete release '${{ inputs.nightly_name }}' -> Error: '${message}'.${ANSI_NOCOLOR}"
127+
printf " %s\n" "${ANSI_LIGHT_RED}Couldn't delete release '${{ inputs.nightly_name }}' -> Error: '${message}'.${ANSI_NOCOLOR}"
128128
printf "%s\n" "::error title=InternalError::Couldn't delete release '${{ inputs.nightly_name }}' -> Error: '${message}'."
129129
exit 1
130130
fi
@@ -184,7 +184,7 @@ jobs:
184184
printf "%s\n" "${ANSI_LIGHT_GREEN}[OK]${ANSI_NOCOLOR}"
185185
else
186186
printf "%s\n" "${ANSI_LIGHT_RED}[FAILED]${ANSI_NOCOLOR}"
187-
printf "%s\n" "${ANSI_LIGHT_RED}Couldn't create release '${{ inputs.nightly_name }}' -> Error: '${message}'.${ANSI_NOCOLOR}"
187+
printf " %s\n" "${ANSI_LIGHT_RED}Couldn't create release '${{ inputs.nightly_name }}' -> Error: '${message}'.${ANSI_NOCOLOR}"
188188
printf "%s\n" "::error title=InternalError::Couldn't create release '${{ inputs.nightly_name }}' -> Error: '${message}'."
189189
exit 1
190190
fi
@@ -197,7 +197,7 @@ jobs:
197197
ANSI_LIGHT_RED=$'\x1b[91m'
198198
ANSI_LIGHT_GREEN=$'\x1b[92m'
199199
ANSI_LIGHT_YELLOW=$'\x1b[93m'
200-
ANSI_LIGHT_BLUE="\e[94m"
200+
ANSI_LIGHT_BLUE=$'\x1b[94m'
201201
ANSI_NOCOLOR=$'\x1b[0m'
202202
203203
export GH_TOKEN=${{ github.token }}
@@ -285,7 +285,7 @@ jobs:
285285
if [[ -n "${assetFilenames[$asset]}" ]]; then
286286
printf "%s\n" "${ANSI_LIGHT_RED}[ERROR]${ANSI_NOCOLOR}"
287287
printf "%s\n" "::error title=DuplicateAsset::Asset '${asset}' from artifact '${artifact}' was already uploaded to release '${{ inputs.nightly_name }}'."
288-
ERRORS=1
288+
ERRORS=$((ERRORS + 1))
289289
continue
290290
else
291291
printf "%s\n" "${ANSI_LIGHT_GREEN}[OK]${ANSI_NOCOLOR}"
@@ -303,9 +303,9 @@ jobs:
303303
printf "%s\n" "${ANSI_LIGHT_GREEN}[OK]${ANSI_NOCOLOR}"
304304
else
305305
printf "%s\n" "${ANSI_LIGHT_RED}[ERROR]${ANSI_NOCOLOR}"
306-
printf "%s\n" "${ANSI_LIGHT_RED}Couldn't download artifact '${artifact}'.${ANSI_NOCOLOR}"
306+
printf " %s\n" "${ANSI_LIGHT_RED}Couldn't download artifact '${artifact}'.${ANSI_NOCOLOR}"
307307
printf "%s\n" "::error title=ArtifactNotFound::Couldn't download artifact '${artifact}'."
308-
ERRORS=1
308+
ERRORS=$((ERRORS + 1))
309309
continue
310310
fi
311311
downloadedArtifacts[$artifact]=1
@@ -355,9 +355,9 @@ jobs:
355355
uploadFile="${asset}"
356356
else
357357
printf " %s\n" "Compression ${ANSI_LIGHT_RED}[ERROR]${ANSI_NOCOLOR}"
358-
printf "%s\n" "${ANSI_LIGHT_RED}Couldn't compress '${artifact}' to zip file '${asset}'.${ANSI_NOCOLOR}"
358+
printf " %s\n" "${ANSI_LIGHT_RED}Couldn't compress '${artifact}' to zip file '${asset}'.${ANSI_NOCOLOR}"
359359
printf "%s\n" "::error title=CompressionError::Couldn't compress '${artifact}' to zip file '${asset}'."
360-
ERRORS=1
360+
ERRORS=$((ERRORS + 1))
361361
continue
362362
fi
363363
elif [[ "${asset}" == !*.tgz || "${asset}" == !*.tar.gz || "${asset}" == \$*.tgz || "${asset}" == \$*.tar.gz ]]; then
@@ -384,9 +384,9 @@ jobs:
384384
uploadFile="${asset}"
385385
else
386386
printf " %s\n" "Compression ${ANSI_LIGHT_RED}[ERROR]${ANSI_NOCOLOR}"
387-
printf "%s\n" "${ANSI_LIGHT_RED}Couldn't compress '${artifact}' to tgz file '${asset}'.${ANSI_NOCOLOR}"
387+
printf " %s\n" "${ANSI_LIGHT_RED}Couldn't compress '${artifact}' to tgz file '${asset}'.${ANSI_NOCOLOR}"
388388
printf "%s\n" "::error title=CompressionError::Couldn't compress '${artifact}' to tgz file '${asset}'."
389-
ERRORS=1
389+
ERRORS=$((ERRORS + 1))
390390
continue
391391
fi
392392
elif [[ "${asset}" == !*.tzst || "${asset}" == !*.tar.zst || "${asset}" == \$*.tzst || "${asset}" == \$*.tar.zst ]]; then
@@ -413,19 +413,19 @@ jobs:
413413
uploadFile="${asset}"
414414
else
415415
printf " %s\n" "Compression ${ANSI_LIGHT_RED}[ERROR]${ANSI_NOCOLOR}"
416-
printf "%s\n" "${ANSI_LIGHT_RED}Couldn't compress '${artifact}' to zst file '${asset}'.${ANSI_NOCOLOR}"
416+
printf " %s\n" "${ANSI_LIGHT_RED}Couldn't compress '${artifact}' to zst file '${asset}'.${ANSI_NOCOLOR}"
417417
printf "%s\n" "::error title=CompressionError::Couldn't compress '${artifact}' to zst file '${asset}'."
418-
ERRORS=1
418+
ERRORS=$((ERRORS + 1))
419419
continue
420420
fi
421421
elif [[ -e "${artifact}/${asset}" ]]; then
422422
printf "%s\n" "${ANSI_LIGHT_GREEN}[OK]${ANSI_NOCOLOR}"
423423
uploadFile="${artifact}/${asset}"
424424
else
425425
printf "%s\n" "${ANSI_LIGHT_RED}[ERROR]${ANSI_NOCOLOR}"
426-
printf "%s\n" "${ANSI_LIGHT_RED}Couldn't find asset '${asset}' in artifact '${artifact}'.${ANSI_NOCOLOR}"
426+
printf " %s\n" "${ANSI_LIGHT_RED}Couldn't find asset '${asset}' in artifact '${artifact}'.${ANSI_NOCOLOR}"
427427
printf "%s\n" "::error title=FileNotFound::Couldn't find asset '${asset}' in artifact '${artifact}'."
428-
ERRORS=1
428+
ERRORS=$((ERRORS + 1))
429429
continue
430430
fi
431431
@@ -463,9 +463,9 @@ jobs:
463463
printf "%s\n" "${ANSI_LIGHT_GREEN}[OK]${ANSI_NOCOLOR}"
464464
else
465465
printf "%s\n" "${ANSI_LIGHT_RED}[ERROR]${ANSI_NOCOLOR}"
466-
printf "%s\n" "${ANSI_LIGHT_RED}Couldn't upload asset '${asset}' from '${uploadFile}' to release '${{ inputs.nightly_name }}'.${ANSI_NOCOLOR}"
466+
printf " %s\n" "${ANSI_LIGHT_RED}Couldn't upload asset '${asset}' from '${uploadFile}' to release '${{ inputs.nightly_name }}'.${ANSI_NOCOLOR}"
467467
printf "%s\n" "::error title=UploadError::Couldn't upload asset '${asset}' from '${uploadFile}' to release '${{ inputs.nightly_name }}'."
468-
ERRORS=1
468+
ERRORS=$((ERRORS + 1))
469469
continue
470470
fi
471471
done <<<'${{ inputs.assets }}'
@@ -486,9 +486,9 @@ jobs:
486486
printf "%s\n" "${ANSI_LIGHT_GREEN}[OK]${ANSI_NOCOLOR}"
487487
else
488488
printf "%s\n" "${ANSI_LIGHT_RED}[ERROR]${ANSI_NOCOLOR}"
489-
printf "%s\n" "${ANSI_LIGHT_RED}Couldn't upload asset '${{ inputs.inventory-json }}' to release '${{ inputs.nightly_name }}'.${ANSI_NOCOLOR}"
489+
printf " %s\n" "${ANSI_LIGHT_RED}Couldn't upload asset '${{ inputs.inventory-json }}' to release '${{ inputs.nightly_name }}'.${ANSI_NOCOLOR}"
490490
printf "%s\n" "::error title=UploadError::Couldn't upload asset '${{ inputs.inventory-json }}' to release '${{ inputs.nightly_name }}'."
491-
ERRORS=1
491+
ERRORS=$((ERRORS + 1))
492492
continue
493493
fi
494494
fi
@@ -497,8 +497,8 @@ jobs:
497497
tree -pash -L 3 .
498498
printf "::endgroup::\n"
499499
500-
if [[ $ERROR -ne 0 ]]; then
501-
printf "%s\n" "${ANSI_LIGHT_RED}Errors detected in previous steps.${ANSI_NOCOLOR}"
500+
if [[ $ERRORS -ne 0 ]]; then
501+
printf "%s\n" "${ANSI_LIGHT_RED}${ERRORS} errors detected in previous steps.${ANSI_NOCOLOR}"
502502
exit 1
503503
fi
504504
@@ -520,6 +520,6 @@ jobs:
520520
printf "%s\n" "${ANSI_LIGHT_GREEN}[OK]${ANSI_NOCOLOR}"
521521
else
522522
printf "%s\n" "${ANSI_LIGHT_RED}[ERROR]${ANSI_NOCOLOR}"
523-
printf "%s\n" "${ANSI_LIGHT_RED}Couldn't remove draft-state from release '${{ inputs.nightly_name }}'.${ANSI_NOCOLOR}"
523+
printf " %s\n" "${ANSI_LIGHT_RED}Couldn't remove draft-state from release '${{ inputs.nightly_name }}'.${ANSI_NOCOLOR}"
524524
printf "%s\n" "::error title=ReleasePage::Couldn't remove draft-state from release '${{ inputs.nightly_name }}'."
525525
fi

.github/workflows/Parameters.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -197,9 +197,10 @@ jobs:
197197
"3.13": { "icon": "🟢", "until": "2029.10" },
198198
"3.14": { "icon": "🟣", "until": "2030.10" },
199199
"pypy-3.7": { "icon": "⟲⚫", "until": "????.??" },
200-
"pypy-3.8": { "icon": "⟲🔴", "until": "????.??" },
201-
"pypy-3.9": { "icon": "⟲🟠", "until": "????.??" },
202-
"pypy-3.10": { "icon": "⟲🟡", "until": "????.??" },
200+
"pypy-3.8": { "icon": "⟲⚫", "until": "????.??" },
201+
"pypy-3.9": { "icon": "⟲🔴", "until": "????.??" },
202+
"pypy-3.10": { "icon": "⟲🟠", "until": "????.??" },
203+
"pypy-3.11": { "icon": "⟲🟡", "until": "????.??" },
203204
},
204205
# Runner systems (runner images) supported by GitHub Actions
205206
"sys": {

.github/workflows/SphinxDocumentation.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ jobs:
227227
if [[ $found -eq 0 ]]; then
228228
printf "[SKIPPED]\n"
229229
fi
230-
done <<<$(find . -type f -not -iname "*.cls" -not -iname "*.sty" -not -iname "*.xdy" -not -iname "*.svg" -not -iname "*.png" -not -iname "*.jpg" | sed 's:./::')
230+
done < <(find . -type f -not -iname "*.cls" -not -iname "*.sty" -not -iname "*.xdy" -not -iname "*.svg" -not -iname "*.png" -not -iname "*.jpg" | sed 's:./::')
231231
232232
- name: Workaround II - https://github.com/sphinx-doc/sphinx/issues/13189
233233
if: inputs.latex_artifact != ''
@@ -259,7 +259,7 @@ jobs:
259259
printf "[FAILED]\n"
260260
fi
261261
fi
262-
done <<<$(find . -type f -iname "*.$imageExt" | sed 's:./::')
262+
done < <(find . -type f -iname "*.$imageExt" | sed 's:./::')
263263
done
264264
265265
- name: 📤 Upload 'LaTeX Documentation' artifact

dist/requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
wheel ~= 0.45
2-
twine ~= 6.0
2+
twine ~= 6.1

doc/requirements.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
-r ../requirements.txt
22

3-
pyTooling ~= 8.0
3+
pyTooling ~= 8.2
44

55
# Enforce latest version on ReadTheDocs
6-
sphinx ~= 8.1
6+
sphinx ~= 8.2
77
docutils ~= 0.21
88
docutils_stubs ~= 0.0.22
99

@@ -15,5 +15,5 @@ sphinxcontrib-mermaid ~= 1.0
1515
autoapi >= 2.0.1
1616
sphinx_design ~= 0.6.1
1717
sphinx-copybutton >= 0.5.2
18-
sphinx_autodoc_typehints ~= 3.0
18+
sphinx_autodoc_typehints ~= 3.1
1919
sphinx_reports ~= 0.7

doc/shields.inc

+2-2
Original file line numberDiff line numberDiff line change
@@ -64,11 +64,11 @@
6464
:target: https://pyTooling.github.io/pyTooling/
6565

6666
.. # Gitter
67-
.. |SHIELD:svg:pyTooling-gitter| image:: https://img.shields.io/badge/chat-on%20gitter-4db797.?longCache=true&style=flat-square&logo=gitter&logoColor=e8ecef
67+
.. |SHIELD:svg:pyTooling-gitter| image:: https://img.shields.io/badge/chat-on%20gitter-4db797?longCache=true&style=flat-square&logo=gitter&logoColor=e8ecef
6868
:alt: Documentation License
6969
:height: 22
7070
:target: https://gitter.im/hdl/community
71-
.. |SHIELD:png:pyTooling-gitter| image:: https://raster.shields.io/badge/chat-on%20gitter-4db797.?longCache=true&style=flat-square&logo=gitter&logoColor=e8ecef
71+
.. |SHIELD:png:pyTooling-gitter| image:: https://raster.shields.io/badge/chat-on%20gitter-4db797?longCache=true&style=flat-square&logo=gitter&logoColor=e8ecef
7272
:alt: Documentation License
7373
:height: 22
7474
:target: https://gitter.im/hdl/community

pyDummy/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
# #
1212
# License: #
1313
# ==================================================================================================================== #
14-
# Copyright 2017-2024 Patrick Lehmann - Bötzingen, Germany #
14+
# Copyright 2017-2025 Patrick Lehmann - Bötzingen, Germany #
1515
# #
1616
# Licensed under the Apache License, Version 2.0 (the "License"); #
1717
# you may not use this file except in compliance with the License. #
@@ -34,7 +34,7 @@
3434

3535
__author__ = "Patrick Lehmann"
3636
__email__ = "[email protected]"
37-
__copyright__ = "2017-2024, Patrick Lehmann"
37+
__copyright__ = "2017-2025, Patrick Lehmann"
3838
__license__ = "Apache License, Version 2.0"
3939
__version__ = "0.4.4"
4040
__keywords__ = ["GitHub Actions"]

pyExamples/Extensions/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
# #
1212
# License: #
1313
# ==================================================================================================================== #
14-
# Copyright 2017-2024 Patrick Lehmann - Bötzingen, Germany #
14+
# Copyright 2017-2025 Patrick Lehmann - Bötzingen, Germany #
1515
# #
1616
# Licensed under the Apache License, Version 2.0 (the "License"); #
1717
# you may not use this file except in compliance with the License. #
@@ -34,7 +34,7 @@
3434

3535
__author__ = "Patrick Lehmann"
3636
__email__ = "[email protected]"
37-
__copyright__ = "2017-2024, Patrick Lehmann"
37+
__copyright__ = "2017-2025, Patrick Lehmann"
3838
__license__ = "Apache License, Version 2.0"
3939
__version__ = "0.14.8"
4040
__keywords__ = ["GitHub Actions"]

pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[build-system]
22
requires = [
3-
"setuptools ~= 75.5",
3+
"setuptools ~= 75.8",
44
"wheel ~= 0.45",
5-
"pyTooling ~= 8.0"
5+
"pyTooling ~= 8.2"
66
]
77
build-backend = "setuptools.build_meta"
88

requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pyTooling ~= 8.0
1+
pyTooling ~= 8.2

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
# #
1212
# License: #
1313
# ==================================================================================================================== #
14-
# Copyright 2017-2024 Patrick Lehmann - Bötzingen, Germany #
14+
# Copyright 2017-2025 Patrick Lehmann - Bötzingen, Germany #
1515
# #
1616
# Licensed under the Apache License, Version 2.0 (the "License"); #
1717
# you may not use this file except in compliance with the License. #

tests/platform/Specific.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
# #
1212
# License: #
1313
# ==================================================================================================================== #
14-
# Copyright 2017-2024 Patrick Lehmann - Bötzingen, Germany #
14+
# Copyright 2017-2025 Patrick Lehmann - Bötzingen, Germany #
1515
# #
1616
# Licensed under the Apache License, Version 2.0 (the "License"); #
1717
# you may not use this file except in compliance with the License. #

tests/requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ pytest ~= 8.3
88
pytest-cov ~= 6.0
99

1010
# Static Type Checking
11-
mypy ~= 1.13
11+
mypy ~= 1.15
1212
typing_extensions ~= 4.12
1313
lxml ~= 5.3

tests/unit/Dummy.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
# #
1212
# License: #
1313
# ==================================================================================================================== #
14-
# Copyright 2017-2024 Patrick Lehmann - Bötzingen, Germany #
14+
# Copyright 2017-2025 Patrick Lehmann - Bötzingen, Germany #
1515
# #
1616
# Licensed under the Apache License, Version 2.0 (the "License"); #
1717
# you may not use this file except in compliance with the License. #

tests/unit/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
# #
1212
# License: #
1313
# ==================================================================================================================== #
14-
# Copyright 2017-2024 Patrick Lehmann - Bötzingen, Germany #
14+
# Copyright 2017-2025 Patrick Lehmann - Bötzingen, Germany #
1515
# #
1616
# Licensed under the Apache License, Version 2.0 (the "License"); #
1717
# you may not use this file except in compliance with the License. #

0 commit comments

Comments
 (0)