From 945143dcc0787df8af96e417de81250cc69483cb Mon Sep 17 00:00:00 2001 From: Alex Nelsin Date: Tue, 16 Dec 2025 12:04:39 -0500 Subject: [PATCH 1/2] Update Python range to >= 3.10, per 3.9 EOL No effects were observed on Make-managed files. References: * https://peps.python.org/pep-0596/ Signed-off-by: Alex Nelsin --- .github/workflows/supply-chain.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/supply-chain.yml b/.github/workflows/supply-chain.yml index 25a1725..b84140f 100644 --- a/.github/workflows/supply-chain.yml +++ b/.github/workflows/supply-chain.yml @@ -28,7 +28,7 @@ jobs: strategy: matrix: python-version: - - '3.9' + - '3.10' - '3.13' steps: From e3b4b716b558c469e5eafa3e545d722932206afc Mon Sep 17 00:00:00 2001 From: Alex Nelsin Date: Tue, 16 Dec 2025 12:05:08 -0500 Subject: [PATCH 2/2] Bump Python version No effects were observed on Make-managed files. References: * https://peps.python.org/pep-0745/ Signed-off-by: Alex Nelsin --- .github/workflows/supply-chain.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/supply-chain.yml b/.github/workflows/supply-chain.yml index b84140f..a171dff 100644 --- a/.github/workflows/supply-chain.yml +++ b/.github/workflows/supply-chain.yml @@ -29,7 +29,7 @@ jobs: matrix: python-version: - '3.10' - - '3.13' + - '3.14' steps: - uses: actions/checkout@v4