Skip to content

Commit

Permalink
try to get cython installed.
Browse files Browse the repository at this point in the history
  • Loading branch information
culler committed Sep 3, 2024
1 parent 66c0d7f commit 20adbdb
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@ jobs:

- name: Install cibuildwheel
run: |
python3 -m pip install cibuildwheel
python3.10 -m pip install cibuildwheel
- name: Build wheels
run: |
python3 -m cibuildwheel --output-dir wheelhouse
python3.10 -m cibuildwheel --output-dir wheelhouse
env:
CIBW_BUILD: cp39-manylinux_x86-64 cp310-manylinux_x86_64 cp311-manylinux_x86-64 cp312-manylinux_x86_64
CIBW_BEFORE_BUILD: |
pip3 install cython>=3.0.0
python -m pip install Cython>=3.0.0
CIBW_REPAIR_WHEEL_COMMAND_LINUX: auditwheel repair --strip -w {dest_dir} {wheel}
CIBW_TEST_COMMAND: python -m cypari.test

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
python-version: 3.12
- name: Install cibuildwheel
run: |
python -m pip install cibuildwheel
python3.12 -m pip install cibuildwheel
- name: Build wheels
run: |
Expand All @@ -28,7 +28,7 @@ jobs:
CIBW_BUILD: cp312-* cp311-* cp310-* cp39-*
CIBW_ARCHS_MACOS: "x86_64 arm64 universal2"
CIBW_BEFORE_BUILD: |
pip install cython>=3.0.0
python -m pip install Cython>=3.0.0
CIBW_TEST_COMMAND: python -m cypari.test

- uses: actions/upload-artifact@v2
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,20 +39,20 @@ jobs:
- name: Install cibuildwheel
run: |
python -m pip install cibuildwheel
python3.12 -m pip install cibuildwheel
- name: Build gmp and pari
run: |
bash build_pari.sh pari64 gmp64
- name: Build many wheels
run: |
python -m cibuildwheel --output-dir wheelhouse
python3.12 -m cibuildwheel --output-dir wheelhouse
env:
CIBW_ARCHS: AMD64
CIBW_BUILD: cp312-* cp311-* cp310-* cp39-*
CIBW_BEFORE_BUILD: |
pip install cython
python -m pip install Cython>=3.0.0
CIBW_TEST_COMMAND: python -m cypari.test

- uses: actions/upload-artifact@v3
Expand Down

0 comments on commit 20adbdb

Please sign in to comment.