Skip to content

Commit 32b0379

Browse files
authored
Merge pull request #145 from hoefling/fix-python-version-in-gh-actions
Set up correct python version on macos
2 parents 2c216aa + 6e62c07 commit 32b0379

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

.github/workflows/macosx.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,13 @@ jobs:
55
runs-on: macos-latest
66
strategy:
77
matrix:
8-
python-version: [2.7, 3.5, 3.6, 3.7, 3.8]
8+
python: [2.7, 3.5, 3.6, 3.7, 3.8]
99
steps:
1010
- uses: actions/checkout@v1
11+
- name: Setup Python
12+
uses: actions/setup-python@v2
13+
with:
14+
python-version: ${{ matrix.python }}
1115
- name: Install build dependencies
1216
run: |
1317
pip install --upgrade pip setuptools wheel

.github/workflows/sdist.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
steps:
77
- uses: actions/checkout@v1
88
- name: Set up Python 3.8
9-
uses: actions/setup-python@v1
9+
uses: actions/setup-python@v2
1010
with:
1111
python-version: 3.8
1212
- name: Install build dependencies

0 commit comments

Comments
 (0)