remove macos 3.6 from CI

This commit is contained in:
Sean Breckenridge 2021-10-28 11:54:23 -07:00
parent e79f51c25d
commit a036461daf

View file

@ -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 }}