fix(ci): exclude Python 3.12 from ansible-core devel jobs

ansible-core devel now requires Python >= 3.13.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Signed-off-by: Felix Matouschek <fmatouschek@redhat.com>
This commit is contained in:
Felix Matouschek
2026-06-08 14:04:45 +02:00
parent 9eb27d287f
commit 5fa2a4acb0
2 changed files with 12 additions and 0 deletions

View File

@@ -161,6 +161,10 @@ jobs:
{ {
"ansible-version": "devel", "ansible-version": "devel",
"python-version": "3.11" "python-version": "3.11"
},
{
"ansible-version": "devel",
"python-version": "3.12"
} }
] ]
@@ -234,6 +238,10 @@ jobs:
{ {
"ansible-version": "devel", "ansible-version": "devel",
"python-version": "3.11" "python-version": "3.11"
},
{
"ansible-version": "devel",
"python-version": "3.12"
} }
] ]

View File

@@ -70,6 +70,10 @@ on:
{ {
"ansible-version": "devel", "ansible-version": "devel",
"python-version": "3.11" "python-version": "3.11"
},
{
"ansible-version": "devel",
"python-version": "3.12"
} }
] ]
required: false required: false