Skip to content

Commit

Permalink
clean
Browse files Browse the repository at this point in the history
  • Loading branch information
maxime-desroches committed Jul 20, 2024
1 parent 995608b commit 9b8f556
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,18 +31,15 @@ jobs:
CIBW_BEFORE_BUILD_MACOS: "bash {project}/scripts/macos_dependencies.sh"
CIBW_MANYLINUX_X86_64_IMAGE: "manylinux_2_28"
CIBW_MANYLINUX_AARCH64_IMAGE: "manylinux_2_28"
CIBW_TEST_COMMAND: "pip install -r {project}/requirements.txt && pytest {package}"
CIBW_TEST_SKIP: "*-macosx_arm64"
MACOSX_DEPLOYMENT_TARGET: "14.0"


- uses: actions/setup-python@v5
if: ${{ matrix.platform.arch != 'aarch64' }}
with:
python-version: ${{ matrix.python.py }}

- name: Installing the wheel
if: ${{ matrix.platform.arch }} != 'aarch64'
if: ${{ matrix.platform.arch != 'aarch64' }}
run: |
pip install --break-system-packages ./wheelhouse/*.whl
Expand Down

0 comments on commit 9b8f556

Please sign in to comment.