Skip to content

Commit

Permalink
Merge pull request #199 from PySport/bugfix/fix-gh-actions
Browse files Browse the repository at this point in the history
Fix issue with macos 3.7.16
  • Loading branch information
koenvo authored Jun 21, 2023
2 parents 1607958 + 42da204 commit c5e5f5f
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,19 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ["3.7.16", 3.8, 3.9, "3.10", "3.11"]
python-version: [3.8, 3.9, "3.10", "3.11"]
include:
- os: macos-latest
python-version: "3.7.16"
- os: ubuntu-latest
python-version: "3.7"
- os: windows-latest
python-version: "3.7"

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand Down

0 comments on commit c5e5f5f

Please sign in to comment.