From fd9e1c3b63bb4d20beb609ff556c409e3ee3a774 Mon Sep 17 00:00:00 2001 From: Alex Bezzubov Date: Tue, 29 Nov 2022 22:58:56 +0100 Subject: [PATCH] ci: fix Python profile after ubuntu-latest 20.04->22.04 update MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Github has changed the ubuntu-latest runner and it does not ship Python 3.6 any more ¯\_(ツ)_/¯ See https://github.com/actions/setup-python/issues/544#issuecomment-1320295576 test plan: * CI profile for python is green --- .github/workflows/pyTest.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pyTest.yml b/.github/workflows/pyTest.yml index 7cb2e27..5cd0f72 100644 --- a/.github/workflows/pyTest.yml +++ b/.github/workflows/pyTest.yml @@ -4,7 +4,7 @@ jobs: test: strategy: matrix: - python-version: [3.6, 3.7, 3.8] + python-version: [3.7, 3.8, 3.9] platform: [ubuntu-latest, macos-latest] runs-on: ${{ matrix.platform }} steps: