From 3ee0d707065a32c858964139f4da240cd372d878 Mon Sep 17 00:00:00 2001 From: Felix Matouschek Date: Fri, 3 Jul 2026 16:00:53 +0200 Subject: [PATCH] fix(ci): exclude Python 3.12 from milestone test matrix ansible-core milestone now requires Python >=3.13, causing all py3.12/milestone CI jobs to fail with: "Package 'ansible-core' requires a different Python: 3.12 not in '>=3.13'" Assisted-by: Claude Code Co-Authored-By: Claude Opus 4.6 Signed-off-by: Felix Matouschek --- .github/workflows/ci.yml | 8 ++++++++ .github/workflows/integration.yml | 4 ++++ 2 files changed, 12 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d6fdca0..35296fd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -154,6 +154,10 @@ jobs: "ansible-version": "milestone", "python-version": "3.11" }, + { + "ansible-version": "milestone", + "python-version": "3.12" + }, { "ansible-version": "devel", "python-version": "3.10" @@ -231,6 +235,10 @@ jobs: "ansible-version": "milestone", "python-version": "3.11" }, + { + "ansible-version": "milestone", + "python-version": "3.12" + }, { "ansible-version": "devel", "python-version": "3.10" diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 7161d37..c49ed9c 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -63,6 +63,10 @@ on: "ansible-version": "milestone", "python-version": "3.11" }, + { + "ansible-version": "milestone", + "python-version": "3.12" + }, { "ansible-version": "devel", "python-version": "3.10"