From b2a3a0fa4d1b6ff79f8e54631d79be167c5bf0cf Mon Sep 17 00:00:00 2001 From: Rinchin <57899558+dev-rinchin@users.noreply.github.com> Date: Tue, 25 Jul 2023 18:33:47 +0300 Subject: [PATCH] fix python version parsing in setup-python https://github.com/actions/setup-python/issues/482 --- .github/workflows/CI.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index ce22ffb3..905c7e95 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -44,7 +44,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-20.04, windows-latest, macos-latest] # FIX: 'ubuntu-latest'(ubunut-22.04) -> 'ubuntu-20.04': Python version 3.6 was not found in the local cache - python-version: [3.6, 3.7, 3.8, 3.9, 3.10] + python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"] steps: - uses: actions/checkout@v2