Skip to content

Commit

Permalink
Oops. wrong branch
Browse files Browse the repository at this point in the history
  • Loading branch information
culler committed Sep 3, 2024
1 parent 88d496a commit 5be0a96
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 18 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,24 +11,24 @@ jobs:
os: [ubuntu-22.04]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v2

- uses: actions/setup-python@v4
- uses: actions/setup-python@v2
name: Install Python
with:
python-version: '3.10'

- name: Install cibuildwheel
run: |
python3.10 -m pip install cibuildwheel
python3 -m pip install cibuildwheel
- name: Build wheels
run: |
python3.10 -m cibuildwheel --output-dir wheelhouse
python3 -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_BUILD: cp38-manylinux_x86_64 cp39-manylinux_x86-64 cp310-manylinux_x86_64 cp311-manylinux_x86-64 cp312-manylinux_x86_64
CIBW_BEFORE_BUILD: |
python -m pip install Cython>=3.0.0
pip3 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
13 changes: 6 additions & 7 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,25 +11,24 @@ jobs:
os: [macos-13]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
name: Install Python
with:
python-version: 3.12
python-version: '3.12'
- name: Install cibuildwheel
run: |
python3 -m pip install Cython>=3.0.0
python3 -m pip install cibuildwheel
python -m pip install cibuildwheel
- name: Build wheels
run: |
python3 -m cibuildwheel --output-dir wheelhouse
env:
CIBW_BUILD: cp312-* cp311-* cp310-* cp39-*
CIBW_BUILD: cp38* cp39* cp310* cp311* cp312*
CIBW_ARCHS_MACOS: "x86_64 arm64 universal2"
CIBW_BEFORE_BUILD: |
python -m pip install Cython>=3.0.0
pip install cython>=3.0.0
CIBW_TEST_COMMAND: python -m cypari.test

- uses: actions/upload-artifact@v2
Expand Down
9 changes: 4 additions & 5 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ jobs:
shell: msys2 {0}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
name: Install a Python to use for building
with:
python-version: '3.12'
Expand All @@ -39,7 +39,6 @@ jobs:
- name: Install cibuildwheel
run: |
python3 -m pip install Cython>=3.0.0
python3 -m pip install cibuildwheel
- name: Build gmp and pari
Expand All @@ -51,9 +50,9 @@ jobs:
python3 -m cibuildwheel --output-dir wheelhouse
env:
CIBW_ARCHS: AMD64
CIBW_BUILD: cp312-* cp311-* cp310-* cp39-*
CIBW_BUILD: cp38* cp39* cp310* cp311* cp312*
CIBW_BEFORE_BUILD: |
python -m pip install Cython>=3.0.0
pip install Cython>=3.0.0
CIBW_TEST_COMMAND: python -m cypari.test

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

0 comments on commit 5be0a96

Please sign in to comment.