From 53c2620c0bbd8519b14cdfecccad402cd4ee6f9b Mon Sep 17 00:00:00 2001 From: "Daniel J. Beutel" Date: Sun, 21 Jul 2024 21:21:55 +0200 Subject: [PATCH] ci(datasets) Add Python 3.11 to Flower Datasets CI --- .github/workflows/datasets.yml | 6 +++--- .github/workflows/framework.yml | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/datasets.yml b/.github/workflows/datasets.yml index 80cece262754..3c17b1b4ea30 100644 --- a/.github/workflows/datasets.yml +++ b/.github/workflows/datasets.yml @@ -31,9 +31,9 @@ jobs: # Latest version which comes cached in the host image can be found here: # https://github.com/actions/runner-images/blob/main/images/linux/Ubuntu2204-Readme.md#python # In case of a mismatch, the job has to download Python to install it. - # Note: Due to a bug in actions/setup-python we have to put 3.10 in - # qoutes as it will otherwise will assume 3.1 - python: [3.8, 3.9, '3.10'] + # Note: Due to a bug in actions/setup-python, we have to put "3.10" in + # quotes as it will otherwise assume "3.1" + python: [3.8, 3.9, '3.10', '3.11'] name: Python ${{ matrix.python }} diff --git a/.github/workflows/framework.yml b/.github/workflows/framework.yml index feb08229be06..a5d2b71f7beb 100644 --- a/.github/workflows/framework.yml +++ b/.github/workflows/framework.yml @@ -23,8 +23,8 @@ jobs: # Latest version which comes cached in the host image can be found here: # https://github.com/actions/runner-images/blob/main/images/linux/Ubuntu2204-Readme.md#python # In case of a mismatch, the job has to download Python to install it. - # Note: Due to a bug in actions/setup-python we have to put 3.10 in - # qoutes as it will otherwise will assume 3.1 + # Note: Due to a bug in actions/setup-python, we have to put "3.10" in + # quotes as it will otherwise assume "3.1" python: [3.8, 3.9, '3.10', '3.11'] name: Python ${{ matrix.python }}