From 5a972ea9af108295653ccd380011455ccaee1d3d Mon Sep 17 00:00:00 2001 From: Alexander Popov Date: Fri, 9 Dec 2022 01:38:05 +0300 Subject: [PATCH] Avoid the YAML parsing mistake 3.10 is parsed as a number and it is trimmed to 3.1. That is expected behavior for numbers, but it's crazy for versions. --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 5f35f8b..192c329 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -16,7 +16,7 @@ jobs: fail-fast: false matrix: # Current ubuntu-latest (Ubuntu 22.04) provides the following versions of Python: - python-version: [3.7, 3.8, 3.9, 3.10, 3.11] + python-version: ['3.7', '3.8', '3.9', '3.10', '3.11'] steps: -- 2.31.1