From c4b7cc69e7583b3c53566b90725b22277eee918b Mon Sep 17 00:00:00 2001 From: Felix Matouschek Date: Tue, 18 Jun 2024 07:55:50 +0200 Subject: [PATCH] fix(ci): Do not test ansible-core devel with py3.10 Python 3.10 is no longer supported by ansible-core devel, so this excludes it from the test matrices. 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 064801c..eedc893 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -82,6 +82,10 @@ jobs: { "ansible-version": "devel", "python-version": "3.9" + }, + { + "ansible-version": "devel", + "python-version": "3.10" } ] @@ -111,6 +115,10 @@ jobs: { "ansible-version": "devel", "python-version": "3.9" + }, + { + "ansible-version": "devel", + "python-version": "3.10" } ] diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 2a28164..68ae004 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -26,6 +26,10 @@ on: { "ansible-version": "devel", "python-version": "3.9" + }, + { + "ansible-version": "devel", + "python-version": "3.10" } ] required: false