From 9b266dc64352cc4ed5cf30f6cb8c3414c142cc37 Mon Sep 17 00:00:00 2001 From: Aleksei Stepanov Date: Mon, 25 Oct 2021 15:31:21 +0200 Subject: [PATCH] Fix: CI error for python 3.6 & macOS Run actions/setup-python@v1 Error: Version 3.6 with arch x64 not found --- .github/workflows/python.yml | 4 ++++ .github/workflows/selenium.yml | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index 92ee5d5214..55bd000db7 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -12,6 +12,10 @@ jobs: matrix: os: [ubuntu, macos, windows] python-version: [ '3.6' , '3.7', '3.8', '3.9' ] # Windows 3.9 fails due to the pywinpty dependency not working (Issue #5967) + exclude: + # macOS do not have python 3.6 x86_64 + - os: macos + python-version: '3.6' steps: - name: Checkout uses: actions/checkout@v1 diff --git a/.github/workflows/selenium.yml b/.github/workflows/selenium.yml index b3f1cd2e32..0bdd596d5c 100644 --- a/.github/workflows/selenium.yml +++ b/.github/workflows/selenium.yml @@ -13,6 +13,10 @@ jobs: matrix: os: [ubuntu, macos] python-version: [ '3.6', '3.7', '3.8', '3.9' ] + exclude: + # macOS do not have python 3.6 x86_64 + - os: macos + python-version: '3.6' steps: - name: Checkout uses: actions/checkout@v2