From 8fd3ce97b3ede4fde1fa653f65e25ec1f14286ab Mon Sep 17 00:00:00 2001 From: Alexey Stepanov Date: Fri, 24 Dec 2021 18:19:42 +0100 Subject: [PATCH] Fix: CI error for python 3.6 & macOS (#6215) Co-authored-by: GitHub Action <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: maliubiao Co-authored-by: Maxim Martynov Co-authored-by: Niyas Sait Co-authored-by: Jiaqi Co-authored-by: Ben Greiner Co-authored-by: David Leen Co-authored-by: Kevin Bates Co-authored-by: Steven Silvester --- .github/workflows/docs.yml | 2 +- .github/workflows/python-nbconvert.yml | 2 +- .github/workflows/python.yml | 2 +- .github/workflows/selenium.yml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 4903ee9485..0f0faba1e4 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -11,7 +11,7 @@ jobs: fail-fast: false matrix: os: [ubuntu] - python-version: [ '3.6' ] + python-version: [ '3.7' ] steps: - name: Checkout uses: actions/checkout@v1 diff --git a/.github/workflows/python-nbconvert.yml b/.github/workflows/python-nbconvert.yml index 152bd9d4f4..d7dfd07c1d 100644 --- a/.github/workflows/python-nbconvert.yml +++ b/.github/workflows/python-nbconvert.yml @@ -16,7 +16,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: [ '3.6' , '3.7', '3.8', '3.9' ] + python-version: [ '3.7', '3.8', '3.9', '3.10' ] steps: - name: Checkout uses: actions/checkout@v1 diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index 6d6f7be07a..282ea1fd85 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -11,7 +11,7 @@ jobs: fail-fast: false matrix: os: [ubuntu, macos, windows] - python-version: [ '3.6' , '3.7', '3.8', '3.9' ] + python-version: [ '3.7', '3.8', '3.9', '3.10' ] steps: - name: Checkout uses: actions/checkout@v1 diff --git a/.github/workflows/selenium.yml b/.github/workflows/selenium.yml index b3f1cd2e32..b0c470eb87 100644 --- a/.github/workflows/selenium.yml +++ b/.github/workflows/selenium.yml @@ -12,7 +12,7 @@ jobs: fail-fast: false matrix: os: [ubuntu, macos] - python-version: [ '3.6', '3.7', '3.8', '3.9' ] + python-version: [ '3.7', '3.8', '3.9', '3.10' ] steps: - name: Checkout uses: actions/checkout@v2