2025-02-20 11:51:52 +08:00
|
|
|
#!/bin/bash
|
|
|
|
|
2025-03-01 00:42:43 +08:00
|
|
|
# This script calls cibuildwheel to build the wheels for the project. It is used in the build-cibw.yml workflow in .github/workflows.
|
|
|
|
# Note that the build/python directory contains the wrapper module built for the specified Python version.
|
|
|
|
|
2025-02-20 11:51:52 +08:00
|
|
|
set -e
|
|
|
|
set -x
|
|
|
|
|
|
|
|
python -m pip install cibuildwheel
|
2025-02-21 13:22:49 +08:00
|
|
|
python -m cibuildwheel build/python --output-dir wheelhouse
|