Skip to content

Commit 09c9ae6

Browse files
authored
Updating r7 from v7.4.0
2 parents b9303e7 + 8274b22 commit 09c9ae6

File tree

6 files changed

+26
-10
lines changed

6 files changed

+26
-10
lines changed

.github/workflows/UnitTesting.yml

Lines changed: 21 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -69,13 +69,23 @@ on:
6969
required: false
7070
default: ''
7171
type: string
72+
windows_before_script:
73+
description: 'Scripts to execute before pytest on Windows (x64-64).'
74+
required: false
75+
default: ''
76+
type: string
77+
windows_arm_before_script:
78+
description: 'Scripts to execute before pytest on Windows (aarch64).'
79+
required: false
80+
default: ''
81+
type: string
7282
mingw64_before_script:
73-
description: 'Scripts to execute before pytest on Windows within MSYS2 MinGW64.'
83+
description: 'Scripts to execute before pytest on Windows (x64-64) within MSYS2 MinGW64.'
7484
required: false
7585
default: ''
7686
type: string
7787
ucrt64_before_script:
78-
description: 'Scripts to execute before pytest on Windows within MSYS2 UCRT64.'
88+
description: 'Scripts to execute before pytest on Windows (x64-64) within MSYS2 UCRT64.'
7989
required: false
8090
default: ''
8191
type: string
@@ -380,13 +390,19 @@ jobs:
380390
if: ( matrix.system == 'ubuntu' || matrix.system == 'ubuntu-arm' ) && inputs.ubuntu_before_script != ''
381391
run: ${{ inputs.ubuntu_before_script }}
382392

383-
# TODO: Windows before script
393+
- name: 🪟 Windows (x86-64) before scripts
394+
if: matrix.system == 'windows' && inputs.windows_before_script != ''
395+
run: ${{ inputs.windows_before_script }}
396+
397+
- name: 🏢 Windows (aarch64) before scripts
398+
if: matrix.system == 'windows-arm' && inputs.windows_arm_before_script != ''
399+
run: ${{ inputs.windows_arm_before_script }}
384400

385-
- name: 🪟🟦 MinGW64 before scripts
401+
- name: 🪟🟦 Windows (x86-64) + MinGW64 before scripts
386402
if: matrix.system == 'msys2' && matrix.runtime == 'MINGW64' && inputs.mingw64_before_script != ''
387403
run: ${{ inputs.mingw64_before_script }}
388404

389-
- name: 🪟🟨 UCRT64 before scripts
405+
- name: 🪟🟨 Windows (x86-64) + UCRT64 before scripts
390406
if: matrix.system == 'msys2' && matrix.runtime == 'UCRT64' && inputs.ucrt64_before_script != ''
391407
run: ${{ inputs.ucrt64_before_script }}
392408

doc/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ Example Pipelines
164164
.. code-block:: toml
165165
166166
[build-system]
167-
requires = ["setuptools >= 80.0", "wheel ~= 0.45.0", "pyTooling ~= 8.10"]
167+
requires = ["setuptools >= 80.0", "wheel ~= 0.45.0", "pyTooling ~= 8.11"]
168168
build-backend = "setuptools.build_meta"
169169
170170
[tool.mypy]

doc/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
-r ../requirements.txt
22

3-
pyTooling ~= 8.10
3+
pyTooling ~= 8.11
44

55
# Enforce latest version on ReadTheDocs
66
sphinx ~= 8.2

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.3.0"
39+
__version__ = "7.4.0"
4040
__keywords__ = ["GitHub Actions"]
4141
__issue_tracker__ = "https://GitHub.com/pyTooling/Actions/issues"
4242

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
requires = [
33
"setuptools >= 80.0",
44
"wheel ~= 0.45.0",
5-
"pyTooling ~= 8.10"
5+
"pyTooling ~= 8.11"
66
]
77
build-backend = "setuptools.build_meta"
88

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pyTooling ~= 8.10
1+
pyTooling ~= 8.11

0 commit comments

Comments
 (0)