Skip to content

Commit

Permalink
fix: remove MacOS checks because of foldcomp
Browse files Browse the repository at this point in the history
  • Loading branch information
valentynbez committed Jun 4, 2024
1 parent ee11e87 commit c592267
Showing 1 changed file with 48 additions and 48 deletions.
96 changes: 48 additions & 48 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit c592267

Please sign in to comment.