From ec61cf0e4fec9456b83524f51dbf2685cfe03067 Mon Sep 17 00:00:00 2001 From: Alexander Popov Date: Fri, 9 Dec 2022 01:29:03 +0300 Subject: [PATCH] Fix `python-version` in the GitHub Actions Current `ubuntu-latest` (Ubuntu 22.04 for x86_64) provides the following versions of Python: - 3.10.8 - 3.11.0 - 3.7.15 - 3.8.15 - 3.9.15 --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 2ccf6f2..5f35f8b 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -15,8 +15,8 @@ jobs: max-parallel: 4 fail-fast: false matrix: - python-version: [3.6, 3.7, 3.8, 3.9] - # github runner with python 3.5 currently fails to install this package + # Current ubuntu-latest (Ubuntu 22.04) provides the following versions of Python: + python-version: [3.7, 3.8, 3.9, 3.10, 3.11] steps: -- 2.31.1