Skip to content

Commit

Permalink
Exclude Python 3.6 and 3.7 on macOS from test matrix
Browse files Browse the repository at this point in the history
Fixes #99
  • Loading branch information
vduseev committed Dec 6, 2024
1 parent b6e4634 commit b9347d4
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,12 @@ jobs:
- ubuntu-20.04 # ubuntu-20.04
- macos-latest # macOS-10.14
- windows-latest # windows-2019
python-version: [ 3.6, 3.7, 3.8, 3.9 ]
python-version: [ '3.6', '3.7', '3.8', '3.9', '3.10' ]
exclude:
- platform: macos-latest
python-version: '3.6'
- platform: macos-latest
python-version: '3.7'

steps:
- uses: actions/checkout@v2
Expand Down

0 comments on commit b9347d4

Please sign in to comment.