From 394d6dbcecc4d55353b256510aaeab658f3743c1 Mon Sep 17 00:00:00 2001 From: Joel Bender Date: Fri, 30 Dec 2022 12:06:05 -0500 Subject: [PATCH] move Python3.6 from ubuntu-latest to legacy --- .github/workflows/build.yml | 4 ++-- check_install.sh | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5e634bab..35df14a0 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.6, 3.7, 3.8] + python-version: [3.7, 3.8] steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }} @@ -43,7 +43,7 @@ jobs: runs-on: ubuntu-18.04 strategy: matrix: - python-version: [2.7, 3.4, 3.5] + python-version: [2.7, 3.4, 3.5, 3.6] steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }} diff --git a/check_install.sh b/check_install.sh index 4abcc038..63d944b6 100755 --- a/check_install.sh +++ b/check_install.sh @@ -1,6 +1,6 @@ #!/bin/bash -for version in 2.7 3.4 3.5 3.6 3.7 3.8; +for version in 2.7 3.4 3.5 3.6 3.7 3.8 3.9 3.10; do if [ -a "`which python$version`" ]; then python$version << EOF