diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6b46052..36eaeee 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -61,55 +61,55 @@ jobs: name: wheels path: dist/* - wheel-macos-x86_64: - name: Build MacOS wheels (x86-64) - runs-on: macOS-11 - strategy: - matrix: - python-tag: - - cp311-macosx_x86_64 - - cp312-macosx_x86_64 - steps: - - uses: actions/checkout@v4 - - name: Build manylinux wheels - uses: pypa/cibuildwheel@v2.18.1 - env: - CIBW_ARCHS: x86_64 - CIBW_BUILD: ${{ matrix.python-tag }} - CIBW_BEFORE_BUILD: pip install cython - CIBW_BUILD_VERBOSITY: 2 - CIBW_TEST_REQUIRES: importlib-resources - with: - output-dir: dist - - uses: actions/upload-artifact@v3 - with: - name: wheels - path: dist/* + # wheel-macos-x86_64: + # name: Build MacOS wheels (x86-64) + # runs-on: macOS-11 + # strategy: + # matrix: + # python-tag: + # - cp311-macosx_x86_64 + # - cp312-macosx_x86_64 + # steps: + # - uses: actions/checkout@v4 + # - name: Build manylinux wheels + # uses: pypa/cibuildwheel@v2.18.1 + # env: + # CIBW_ARCHS: x86_64 + # CIBW_BUILD: ${{ matrix.python-tag }} + # CIBW_BEFORE_BUILD: pip install cython + # CIBW_BUILD_VERBOSITY: 2 + # CIBW_TEST_REQUIRES: importlib-resources + # with: + # output-dir: dist + # - uses: actions/upload-artifact@v3 + # with: + # name: wheels + # path: dist/* - wheel-macos-aarch64: - name: Build MacOS wheels (Aarch64) - runs-on: macOS-11 - strategy: - matrix: - python-tag: - - cp311-macosx_arm64 - - cp312-macosx_arm64 - steps: - - uses: actions/checkout@v4 - - name: Build manylinux wheels - uses: pypa/cibuildwheel@v2.18.1 - env: - CIBW_ARCHS: arm64 - CIBW_BUILD: ${{ matrix.python-tag }} - CIBW_BEFORE_BUILD: pip install cython - CIBW_BUILD_VERBOSITY: 2 - CIBW_TEST_REQUIRES: importlib-resources - with: - output-dir: dist - - uses: actions/upload-artifact@v3 - with: - name: wheels - path: dist/* + # wheel-macos-aarch64: + # name: Build MacOS wheels (Aarch64) + # runs-on: macOS-11 + # strategy: + # matrix: + # python-tag: + # - cp311-macosx_arm64 + # - cp312-macosx_arm64 + # steps: + # - uses: actions/checkout@v4 + # - name: Build manylinux wheels + # uses: pypa/cibuildwheel@v2.18.1 + # env: + # CIBW_ARCHS: arm64 + # CIBW_BUILD: ${{ matrix.python-tag }} + # CIBW_BEFORE_BUILD: pip install cython + # CIBW_BUILD_VERBOSITY: 2 + # CIBW_TEST_REQUIRES: importlib-resources + # with: + # output-dir: dist + # - uses: actions/upload-artifact@v3 + # with: + # name: wheels + # path: dist/* sdist: runs-on: ubuntu-latest