Skip to content

Commit

Permalink
fixing syntax errors
Browse files Browse the repository at this point in the history
  • Loading branch information
alpae committed Feb 7, 2025
1 parent 183498b commit 6dda29c
Showing 1 changed file with 1 addition and 49 deletions.
50 changes: 1 addition & 49 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,41 +52,11 @@ jobs:


build_wheels:
name: Build ${{ matrix.os }} wheels
name: Build wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, ubuntu-24.04-arm, windows-latest, macos-13, macos-latest]
#env:
# MACOSX_DEPLOYMENT_TARGET: "10.9"
#strategy:
# fail-fast: false
# matrix:
# include:
# - os: ubuntu-latest
# arch: x86_64
# build: 'cp*'
# - os: macos-13
# arch: x86_64
# build: 'cp*'
# - os: macos-latest
# arch: arm64
# build: 'cp*'
# - os: windows-latest
# arch: AMD64
# build: 'cp*'
# - os: ubunutu-24.04-arm
# arch: a
# # The aarch64 wheels are very slow so split into separate jobs
# - os: ubuntu-latest
# arch: aarch64
# build: 'cp311-*'
# - os: ubuntu-latest
# arch: aarch64
# build: 'cp312-*'
# - os: ubuntu-latest
# arch: aarch64
# build: 'cp313-*'

steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
Expand All @@ -95,20 +65,6 @@ jobs:
name: Install Python on Unix
with:
python-version: '3.12'
#if: runner.os != 'Windows'

#- name: Install Python and dependencies on Windows
# uses: mamba-org/setup-micromamba@06375d89d211a1232ef63355742e9e2e564bc7f7 # v2.0.2
# with:
# environment-name: build
# create-args: >
# python=3.12 pkgconfig
# init-shell: bash powershell
# if: runner.os == 'Windows'

#- uses: docker/setup-qemu-action@49b3bc8e6bdd4a60e6116a5414239cba5943d3cf # v3.2.0
# if: runner.os == 'Linux' && matrix.arch != 'x64_64'
# name: Set up QEMU on Linux

- name: Install cibuildwheel
run: |
Expand All @@ -117,15 +73,11 @@ jobs:
- name: Build ${{ matrix.build }} wheels
run: |
python -m cibuildwheel --output-dir wheelhouse
#env:
# CIBW_BUILD: '${{ matrix.build }}'
# CIBW_ARCHS: '${{ matrix.arch }}'
- uses: actions/upload-artifact@0b2256b8c012f0828dc542b3febcab082c67f72b # v4.3.4
with:
path: |
./wheelhouse/*.whl
#name: cibw-wheels-${{ matrix.os }}-${{ matrix.arch }}-${{ strategy.job-index }}
name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }}


Expand Down

0 comments on commit 6dda29c

Please # to comment.