Try installing Cython in the build system. #63
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Windows wheels | ||
on: [push, pull_request] | ||
jobs: | ||
build_wheels: | ||
name: Build Windows wheels for 64 bit Python | ||
runs-on: windows-latest | ||
defaults: | ||
run: | ||
shell: msys2 {0} | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-python@v4 | ||
name: Install a Python to use for building | ||
with: | ||
python-version: '3.12' | ||
- uses: msys2/setup-msys2@v2 | ||
name: Setup an msys2 environment | ||
with: | ||
msystem: UCRT64 | ||
release: false | ||
install: >- | ||
base-devel | ||
m4 | ||
bison | ||
make | ||
patch | ||
sed | ||
pacboy: gcc:p | ||
path-type: inherit | ||
- name: Expand the path for Visual Studio 2019 | ||
run: | | ||
echo "/c/Program Files (x86)/Windows Kits/10/bin/10.0.19041.0/x64" >> $GITHUB_PATH | ||
- name: Install cibuildwheel | ||
run: | | ||
python3 -m pip install Cython>=3.0.0 | ||
python3 -m pip install cibuildwheel | ||
- name: Build gmp and pari | ||
run: | | ||
bash build_pari.sh pari64 gmp64 | ||
- name: Build many wheels | ||
run: | | ||
python3 -m cibuildwheel --output-dir wheelhouse | ||
env: | ||
CIBW_ARCHS: AMD64 | ||
CIBW_BUILD: cp312-* cp311-* cp310-* cp39-* | ||
CIBW_BEFORE_BUILD: | | ||
python -m pip install Cython>=3.0.0 | ||
CIBW_TEST_COMMAND: python -m cypari.test | ||
- uses: actions/upload-artifact@v3 | ||
name: Save the wheels as artifacts | ||
with: | ||
path: ./wheelhouse/*.whl |