From 26586b21cc27c3cf64330c230ed642be1ffc5ff5 Mon Sep 17 00:00:00 2001 From: Patrick Lehmann Date: Mon, 14 Aug 2023 22:56:22 +0200 Subject: [PATCH] Deprecated Python 3.7. --- .github/workflows/Parameters.yml | 10 +++++----- .github/workflows/_Checking_Parameters.yml | 4 ++-- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/Parameters.yml b/.github/workflows/Parameters.yml index 4eadf003..496d26d9 100644 --- a/.github/workflows/Parameters.yml +++ b/.github/workflows/Parameters.yml @@ -37,7 +37,7 @@ on: python_version_list: description: 'Space separated list of Python versions to run tests with.' required: false - default: '3.7 3.8 3.9 3.10 3.11' + default: '3.8 3.9 3.10 3.11' type: string system_list: description: 'Space separated list of systems to run tests on.' @@ -144,10 +144,10 @@ jobs: # Python and PyPy versions supported by "setup-python" action "python": { "3.6": { "icon": "⚫", "until": "2021.12.23" }, - "3.7": { "icon": "🔴", "until": "2023.06.27" }, - "3.8": { "icon": "🟠", "until": "2024.10" }, - "3.9": { "icon": "🟡", "until": "2025.10" }, - "3.10": { "icon": "🟢", "until": "2026.10" }, + "3.7": { "icon": "⚫", "until": "2023.06.27" }, + "3.8": { "icon": "🔴", "until": "2024.10" }, + "3.9": { "icon": "🟠", "until": "2025.10" }, + "3.10": { "icon": "🟡", "until": "2026.10" }, "3.11": { "icon": "🟢", "until": "2027.10" }, "3.12": { "icon": "🟣", "until": "2028.10" }, "pypy-3.7": { "icon": "⟲🔴", "until": "????.??" }, diff --git a/.github/workflows/_Checking_Parameters.yml b/.github/workflows/_Checking_Parameters.yml index ef0635f3..03ea12c9 100644 --- a/.github/workflows/_Checking_Parameters.yml +++ b/.github/workflows/_Checking_Parameters.yml @@ -81,7 +81,7 @@ jobs: from pyTooling.Common import zipdicts expectedPythonVersion = "3.11" - expectedPythons = ["3.7", "3.8", "3.9", "3.10", "3.11"] + expectedPythons = ["3.8", "3.9", "3.10", "3.11"] expectedSystems = ["ubuntu", "windows", "macos"] expectedJobs = [f"{system}:{python}" for system in expectedSystems for python in expectedPythons] + ["mingw64:3.10"] expectedName = "Example" @@ -185,7 +185,7 @@ jobs: from pyTooling.Common import zipdicts expectedPythonVersion = "3.11" - expectedPythons = ["3.7", "3.8", "3.9", "3.10", "3.11"] + expectedPythons = ["3.8", "3.9", "3.10", "3.11"] expectedSystems = ["windows"] expectedJobs = [f"{system}:{python}" for system in expectedSystems for python in expectedPythons] + ["mingw32:3.10", "mingw64:3.10"] expectedName = "Example"