From 51a5b03fc7b409f9f97389635078fb7e25bf0673 Mon Sep 17 00:00:00 2001 From: Paul O'Leary McCann Date: Thu, 14 Sep 2023 21:53:21 +0900 Subject: [PATCH] cibuildwheel does the matrix, so remove it Should have noticed that earlier. --- .github/workflows/osx.yml | 27 +-------------------------- 1 file changed, 1 insertion(+), 26 deletions(-) diff --git a/.github/workflows/osx.yml b/.github/workflows/osx.yml index f485aaa..fefdc97 100644 --- a/.github/workflows/osx.yml +++ b/.github/workflows/osx.yml @@ -5,31 +5,12 @@ on: [push] jobs: build_osx: runs-on: macos-latest - strategy: - max-parallel: 5 - matrix: - python-version: [3.8, 3.9, "3.10", "3.11"] - include: - - python-version: 3.8 - py-short: 38 - py-short2: 38 - - python-version: 3.9 - py-short: 39 - py-short2: 39 - - python-version: "3.10" - py-short: 310 - py-short2: 310 - - python-version: "3.11" - py-short: 311 - py-short2: 311 - steps: - uses: actions/checkout@v3 - name: Set up python uses: actions/setup-python@v4 with: - python-version: ${{ matrix.python-version }} - architecture: x64 + python-version: '3.x' - name: Download and build MeCab shell: bash run: | @@ -39,12 +20,6 @@ jobs: with: name: osx-wheels path: dist - - name: Check wheels - shell: bash - run: | - ls -la dist - VERSION=$(python setup.py --version) - pip install dist/mecab_python3-${VERSION}-cp${{ matrix.py-short }}-cp${{ matrix.py-short2 }}-macosx*.whl - name: Publish to PyPI if tagged if: startsWith(github.ref, 'refs/tags') env: