Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Build

on: push

permissions:
contents: write

jobs:
build_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-14]
os: [macos-14]

steps:
- uses: actions/checkout@v4

- name: Build wheels
uses: pypa/cibuildwheel@v2.23.3

- name: Commit
run: |
git config --global user.name 'Wheel bot'
git config --global user.email '<>'
git add wheelhouse/*.whl
git commit -m "Bot: Add built wheels" -m "[skip ci]"
git push
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
'clean' in sys.argv):
setup_requires = []
else:
setup_requires = ['numpy']
setup_requires = ['Cython', 'numpy']


# --- Encapsulate NumPy imports in a specialized Extension type ---------------
Expand Down
Binary file not shown.
Binary file not shown.