From 2f60ad7c69c2f7f9d42fcccc515122f42ba732dd Mon Sep 17 00:00:00 2001 From: Felix Matouschek Date: Mon, 14 Aug 2023 15:01:31 +0200 Subject: [PATCH] ci: Exclude py3.9 with Ansible milestone Python 3.9 is no longer supported by the latest Ansible milestone version. Signed-off-by: Felix Matouschek --- .github/workflows/ci.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cf853b6..834538b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -96,6 +96,10 @@ jobs: "ansible-version": "milestone", "python-version": "3.8" }, + { + "ansible-version": "milestone", + "python-version": "3.9" + }, { "ansible-version": "devel", "python-version": "3.7" @@ -159,6 +163,10 @@ jobs: "ansible-version": "milestone", "python-version": "3.8" }, + { + "ansible-version": "milestone", + "python-version": "3.9" + }, { "ansible-version": "devel", "python-version": "3.7"