Skip to content

Commit 51a5b03

Browse files
committed
cibuildwheel does the matrix, so remove it
Should have noticed that earlier.
1 parent 4110694 commit 51a5b03

File tree

1 file changed

+1
-26
lines changed

1 file changed

+1
-26
lines changed

.github/workflows/osx.yml

Lines changed: 1 addition & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -5,31 +5,12 @@ on: [push]
55
jobs:
66
build_osx:
77
runs-on: macos-latest
8-
strategy:
9-
max-parallel: 5
10-
matrix:
11-
python-version: [3.8, 3.9, "3.10", "3.11"]
12-
include:
13-
- python-version: 3.8
14-
py-short: 38
15-
py-short2: 38
16-
- python-version: 3.9
17-
py-short: 39
18-
py-short2: 39
19-
- python-version: "3.10"
20-
py-short: 310
21-
py-short2: 310
22-
- python-version: "3.11"
23-
py-short: 311
24-
py-short2: 311
25-
268
steps:
279
- uses: actions/checkout@v3
2810
- name: Set up python
2911
uses: actions/setup-python@v4
3012
with:
31-
python-version: ${{ matrix.python-version }}
32-
architecture: x64
13+
python-version: '3.x'
3314
- name: Download and build MeCab
3415
shell: bash
3516
run: |
@@ -39,12 +20,6 @@ jobs:
3920
with:
4021
name: osx-wheels
4122
path: dist
42-
- name: Check wheels
43-
shell: bash
44-
run: |
45-
ls -la dist
46-
VERSION=$(python setup.py --version)
47-
pip install dist/mecab_python3-${VERSION}-cp${{ matrix.py-short }}-cp${{ matrix.py-short2 }}-macosx*.whl
4823
- name: Publish to PyPI if tagged
4924
if: startsWith(github.ref, 'refs/tags')
5025
env:

0 commit comments

Comments
 (0)