Skip to content

Commit 25c007b

Browse files
authored
v6.6.0
2 parents ec73d6b + 1e3e301 commit 25c007b

20 files changed

Lines changed: 59 additions & 59 deletions

.github/workflows/ApplicationTesting.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ jobs:
8989
uses: actions/checkout@v5
9090

9191
- name: 📥 Download artifacts '${{ inputs.wheel }}' from 'Package' job
92-
uses: pyTooling/download-artifact@v5
92+
uses: pyTooling/download-artifact@v6
9393
with:
9494
name: ${{ inputs.wheel }}
9595
path: install
@@ -215,9 +215,9 @@ jobs:
215215
if: matrix.system == 'msys2'
216216
run: |
217217
if [ -n '${{ inputs.mingw_requirements }}' ]; then
218-
python -m pip install --disable-pip-version-check ${{ inputs.mingw_requirements }}
218+
python -m pip install --disable-pip-version-check --break-system-packages ${{ inputs.mingw_requirements }}
219219
else
220-
python -m pip install --disable-pip-version-check ${{ inputs.requirements }}
220+
python -m pip install --disable-pip-version-check --break-system-packages ${{ inputs.requirements }}
221221
fi
222222
223223
- name: 🔧 Install wheel from artifact (Ubuntu/macOS)
@@ -262,7 +262,7 @@ jobs:
262262
263263
- name: 📤 Upload 'TestReportSummary.xml' artifact
264264
if: inputs.apptest_xml_artifact != ''
265-
uses: pyTooling/upload-artifact@v4
265+
uses: pyTooling/upload-artifact@v5
266266
with:
267267
name: ${{ inputs.apptest_xml_artifact }}-${{ matrix.system }}-${{ matrix.runtime }}-${{ matrix.python }}
268268
working-directory: report/unit

.github/workflows/BuildTheDocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
skip-deploy: true
5050

5151
- name: 📤 Upload 'documentation' artifacts
52-
uses: pyTooling/upload-artifact@v4
52+
uses: pyTooling/upload-artifact@v5
5353
if: inputs.artifact != ''
5454
with:
5555
name: ${{ inputs.artifact }}

.github/workflows/CompletePipeline.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -359,10 +359,10 @@ jobs:
359359
needs:
360360
- Prepare
361361
- UnitTesting
362-
- Install
363362
# - AppTesting
364363
# - StaticTypeCheck
365364
- Package
365+
- Install
366366
- PublishToGitHubPages
367367
if: needs.Prepare.outputs.is_release_commit == 'true' && github.event_name != 'schedule'
368368
permissions:
@@ -378,10 +378,10 @@ jobs:
378378
needs:
379379
- Prepare
380380
- UnitTesting
381-
- Install
382381
# - AppTesting
383382
# - StaticTypeCheck
384383
- Package
384+
- Install
385385
- PublishToGitHubPages
386386
if: needs.Prepare.outputs.is_release_tag == 'true'
387387
permissions:
@@ -418,6 +418,7 @@ jobs:
418418
- PublishCoverageResults
419419
- PublishToGitHubPages
420420
# - PublishOnPyPI
421+
- Install
421422
- IntermediateCleanUp
422423
if: inputs.cleanup == 'true'
423424
with:

.github/workflows/CoverageCollection.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ jobs:
163163
164164
- name: 📤 Upload 'Coverage Report' artifact
165165
continue-on-error: true
166-
uses: pyTooling/upload-artifact@v4
166+
uses: pyTooling/upload-artifact@v5
167167
with:
168168
name: ${{ inputs.artifact }}
169169
working-directory: ${{ steps.getVariables.outputs.coverage_report_html_directory }}

.github/workflows/InstallPackage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353

5454
steps:
5555
- name: 📥 Download artifacts '${{ inputs.wheel }}' from 'Package' job
56-
uses: pyTooling/download-artifact@v5
56+
uses: pyTooling/download-artifact@v6
5757
with:
5858
name: ${{ inputs.wheel }}
5959
path: install

.github/workflows/LaTeXDocumentation.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
continue-on-error: ${{ inputs.can-fail == 'true' }}
6161
steps:
6262
- name: 📥 Download artifacts '${{ inputs.latex_artifact }}' from 'SphinxDocumentation' job
63-
uses: pyTooling/download-artifact@v5
63+
uses: pyTooling/download-artifact@v6
6464
with:
6565
name: ${{ inputs.latex_artifact }}
6666
path: latex
@@ -83,7 +83,7 @@ jobs:
8383
latexmk -${{ inputs.processor }} "${{ inputs.document }}.tex"
8484
8585
- name: 📤 Upload 'PDF Documentation' artifact
86-
uses: pyTooling/upload-artifact@v4
86+
uses: pyTooling/upload-artifact@v5
8787
if: inputs.pdf_artifact != ''
8888
with:
8989
name: ${{ inputs.pdf_artifact }}

.github/workflows/Package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ jobs:
106106
run: python setup.py bdist_wheel
107107

108108
- name: 📤 Upload wheel artifact
109-
uses: pyTooling/upload-artifact@v4
109+
uses: pyTooling/upload-artifact@v5
110110
with:
111111
name: ${{ inputs.artifact }}
112112
working-directory: dist

.github/workflows/Parameters.yml

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -287,8 +287,8 @@ jobs:
287287
else:
288288
disabled = [disable.strip() for disable in disable_list.split(" ")]
289289
290-
if "3.8" in versions:
291-
print("::warning title=Deprecated::Support for Python 3.8 ended in 2024.10.")
290+
if "3.9" in versions:
291+
print("::warning title=Deprecated::Support for Python 3.9 ended in 2025.10.")
292292
if "msys2" in systems:
293293
print("::warning title=Deprecated::System 'msys2' will be replaced by 'mingw64'.")
294294
if currentAlphaVersion in versions:
@@ -300,15 +300,13 @@ jobs:
300300
data = {
301301
# Python and PyPy versions supported by "setup-python" action
302302
"python": {
303-
"3.8": { "icon": "⚫", "until": "2024.10" },
304-
"3.9": { "icon": "🔴", "until": "2025.10" },
305-
"3.10": { "icon": "🟠", "until": "2026.10" },
306-
"3.11": { "icon": "🟡", "until": "2027.10" },
307-
"3.12": { "icon": "🟢", "until": "2028.10" },
303+
"3.9": { "icon": "⚫", "until": "2025.10" },
304+
"3.10": { "icon": "🔴", "until": "2026.10" },
305+
"3.11": { "icon": "🟠", "until": "2027.10" },
306+
"3.12": { "icon": "🟡", "until": "2028.10" },
308307
"3.13": { "icon": "🟢", "until": "2029.10" },
309-
"3.14": { "icon": "🟣", "until": "2030.10" },
310-
"pypy-3.7": { "icon": "⟲⚫", "until": "????.??" },
311-
"pypy-3.8": { "icon": "⟲⚫", "until": "????.??" },
308+
"3.14": { "icon": "🟢", "until": "2030.10" },
309+
"3.15": { "icon": "🟣", "until": "2031.10" },
312310
"pypy-3.9": { "icon": "⟲🔴", "until": "????.??" },
313311
"pypy-3.10": { "icon": "⟲🟠", "until": "????.??" },
314312
"pypy-3.11": { "icon": "⟲🟡", "until": "????.??" },

.github/workflows/PublishCoverageResults.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ jobs:
115115
submodules: true
116116

117117
- name: 📥 Download Artifacts
118-
uses: pyTooling/download-artifact@v5
118+
uses: pyTooling/download-artifact@v6
119119
with:
120120
pattern: ${{ inputs.coverage_artifacts_pattern }}
121121
path: artifacts
@@ -156,7 +156,7 @@ jobs:
156156
tree -pash ${{ fromJson(inputs.coverage_report_html).directory }}
157157
158158
- name: 📤 Upload 'Coverage SQLite Database' artifact
159-
uses: pyTooling/upload-artifact@v4
159+
uses: pyTooling/upload-artifact@v5
160160
if: inputs.coverage_sqlite_artifact != ''
161161
continue-on-error: true
162162
with:
@@ -166,7 +166,7 @@ jobs:
166166
retention-days: 1
167167

168168
- name: 📤 Upload 'Coverage XML Report' artifact
169-
uses: pyTooling/upload-artifact@v4
169+
uses: pyTooling/upload-artifact@v5
170170
if: inputs.coverage_xml_artifact != ''
171171
continue-on-error: true
172172
with:
@@ -177,7 +177,7 @@ jobs:
177177
retention-days: 1
178178

179179
- name: 📤 Upload 'Coverage JSON Report' artifact
180-
uses: pyTooling/upload-artifact@v4
180+
uses: pyTooling/upload-artifact@v5
181181
if: inputs.coverage_json_artifact != ''
182182
continue-on-error: true
183183
with:
@@ -188,7 +188,7 @@ jobs:
188188
retention-days: 1
189189

190190
- name: 📤 Upload 'Coverage HTML Report' artifact
191-
uses: pyTooling/upload-artifact@v4
191+
uses: pyTooling/upload-artifact@v5
192192
if: inputs.coverage_html_artifact != ''
193193
continue-on-error: true
194194
with:

.github/workflows/PublishOnPyPI.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656

5757
steps:
5858
- name: 📥 Download artifacts '${{ inputs.artifact }}' from 'Package' job
59-
uses: pyTooling/download-artifact@v5
59+
uses: pyTooling/download-artifact@v6
6060
with:
6161
name: ${{ inputs.artifact }}
6262
path: dist

0 commit comments

Comments
 (0)