Skip to content

Commit a78656a

Browse files
committed
Fixed used colors for selected Python versions and removed Python 3.8.
1 parent 10c10d9 commit a78656a

File tree

3 files changed

+14
-14
lines changed

3 files changed

+14
-14
lines changed

.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/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/_Checking_JobTemplates.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -221,9 +221,9 @@ jobs:
221221
- Prepare
222222
- UnitTesting
223223
- PlatformTesting
224-
- Install
225224
# - StaticTypeCheck
226225
- Package
226+
- Install
227227
- PublishToGitHubPages
228228
permissions:
229229
contents: write # required for create tag
@@ -239,9 +239,9 @@ jobs:
239239
- Prepare
240240
- UnitTesting
241241
- PlatformTesting
242-
- Install
243242
# - StaticTypeCheck
244243
- Package
244+
- Install
245245
- PublishToGitHubPages
246246
if: needs.Prepare.outputs.is_release_tag == 'true'
247247
permissions:
@@ -277,6 +277,7 @@ jobs:
277277
- PublishTestResults
278278
- PublishCoverageResults
279279
- PublishToGitHubPages
280+
- Install
280281
- IntermediateCleanUp
281282
with:
282283
package: ${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).package_all }}

0 commit comments

Comments
 (0)