Fix `python-version` in the GitHub Actions
authorAlexander Popov <alex.popov@linux.com>
Thu, 8 Dec 2022 22:29:03 +0000 (01:29 +0300)
committerAlexander Popov <alex.popov@linux.com>
Thu, 8 Dec 2022 22:29:03 +0000 (01:29 +0300)
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

index 2ccf6f2ae543181bc4c4e566e4d041cdead1ebd4..5f35f8bdae3297bcd4065c47a1cbfd541a06d2f3 100644 (file)
@@ -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: