From 9520b471471496f62c43bc4bd26c7dd52cdfbbbd Mon Sep 17 00:00:00 2001 From: AljazD Date: Mon, 13 Jul 2026 12:44:38 +0200 Subject: [PATCH] Python CI/CD workflow will no longer build python version 3.9 --- .github/workflows/python-main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/python-main.yml b/.github/workflows/python-main.yml index 9c660a6701..1a50cc3075 100644 --- a/.github/workflows/python-main.yml +++ b/.github/workflows/python-main.yml @@ -220,7 +220,7 @@ jobs: runs-on: windows-2022 strategy: matrix: - python-version: [3.9, '3.10', '3.11', '3.12', '3.13', '3.14'] + python-version: ['3.10', '3.11', '3.12', '3.13', '3.14'] python-architecture: [x64] # TODO(Morato) - re-enable x86 fail-fast: false env: @@ -309,7 +309,7 @@ jobs: needs: build-docstrings strategy: matrix: - python-version: [3.9, '3.10', '3.11', '3.12', '3.13', '3.14'] + python-version: ['3.10', '3.11', '3.12', '3.13', '3.14'] os: [macos-15-intel, macos-14] fail-fast: false runs-on: ${{ matrix.os }}