diff --git a/.github/workflows/build_wheels.yml b/.github/workflows/build_wheels.yml index bf49d09..5240e7b 100644 --- a/.github/workflows/build_wheels.yml +++ b/.github/workflows/build_wheels.yml @@ -44,23 +44,18 @@ jobs: python-version: "3.11" # Only needed for Linux ARM builds - - name: Set up QEMU - if: runner.os == 'Linux' - uses: docker/setup-qemu-action@v2 - with: - platforms: all - - #- name: Install dependencies - # run: python -m pip install --upgrade pip cibuildwheel setuptools wheel pytest + #- name: Set up QEMU + # if: runner.os == 'Linux' + # uses: docker/setup-qemu-action@v2 + # with: + # platforms: all - name: Build wheels - # run: cibuildwheel --output-dir wheelhouse uses: pypa/cibuildwheel@v3.2.0 env: - # Multi-arch builds CIBW_ARCHS_LINUX: "x86_64" # aarch64 CIBW_ARCHS_MACOS: "universal2" # x86_64 arm64 - CIBW_ARCHS_WINDOWS: "AMD64 x86" + CIBW_ARCHS_WINDOWS: "AMD64" # x86 CIBW_TEST_REQUIRES: "pytest" CIBW_TEST_COMMAND: "pytest {package}/tests/test_coparun_module.py"