From a036461dafe216ee7ab012539b42e35e34dfead1 Mon Sep 17 00:00:00 2001 From: Sean Breckenridge Date: Thu, 28 Oct 2021 11:54:23 -0700 Subject: [PATCH] remove macos 3.6 from CI --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index df89d38..2e2b10f 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -19,9 +19,9 @@ jobs: strategy: matrix: platform: [ubuntu-latest, macos-latest] # TODO windows-latest?? - python-version: ['3.6', '3.7', '3.8'] + python-version: [3.6, 3.7, 3.8] # seems like 3.6 isn't available on their osx image anymore - exclude: [{platform: macos-latest, python-version: '3.6'}] + exclude: [{platform: macos-latest, python-version: 3.6}] runs-on: ${{ matrix.platform }}