Skip to content

Commit

Permalink
DNM: Retrigger wheel builds for 0.13.2
Browse files Browse the repository at this point in the history
The 0.13.2 release job failed because it was trying to install
cibuildwheel with python 3.7 and that's incompatible with newer
releases of cibuildwheel. This commit fixes this oversight by using 3.11
and then updating the job config to build from this branch. A real PR
will be open after the job succeeds to apply this fix for real.
  • Loading branch information
mtreinish committed Oct 3, 2023
1 parent b616f5e commit ac0da4a
Showing 1 changed file with 10 additions and 11 deletions.
21 changes: 10 additions & 11 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@
name: Wheel Builds
on:
push:
tags:
- '*'
branches: [ 'DNM-retrigger-13-2' ]
jobs:
rustworkx-core:
name: Publish rustworkx-core
Expand All @@ -26,7 +25,7 @@ jobs:
- uses: actions/setup-python@v4
name: Install Python
with:
python-version: '3.7'
python-version: '3.11'
- name: Install deps
run: pip install -U twine setuptools-rust
- name: Build sdist
Expand All @@ -51,7 +50,7 @@ jobs:
- uses: actions/setup-python@v4
name: Install Python
with:
python-version: '3.7'
python-version: '3.11'
- uses: dtolnay/rust-toolchain@stable
- name: Install cibuildwheel
run: |
Expand Down Expand Up @@ -89,7 +88,7 @@ jobs:
- uses: actions/setup-python@v4
name: Install Python
with:
python-version: '3.7'
python-version: '3.11'
- uses: dtolnay/rust-toolchain@stable
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
Expand Down Expand Up @@ -132,7 +131,7 @@ jobs:
- uses: actions/setup-python@v4
name: Install Python
with:
python-version: '3.7'
python-version: '3.11'
- uses: dtolnay/rust-toolchain@stable
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
Expand Down Expand Up @@ -175,7 +174,7 @@ jobs:
- uses: actions/setup-python@v4
name: Install Python
with:
python-version: '3.7'
python-version: '3.11'
- uses: dtolnay/rust-toolchain@stable
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
Expand Down Expand Up @@ -218,7 +217,7 @@ jobs:
- uses: actions/setup-python@v4
name: Install Python
with:
python-version: '3.7'
python-version: '3.11'
- uses: dtolnay/rust-toolchain@stable
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
Expand Down Expand Up @@ -262,7 +261,7 @@ jobs:
- uses: actions/setup-python@v4
name: Install Python
with:
python-version: '3.7'
python-version: '3.11'
- uses: dtolnay/rust-toolchain@stable
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
Expand Down Expand Up @@ -329,7 +328,7 @@ jobs:
- uses: actions/setup-python@v4
name: Install Python
with:
python-version: '3.7'
python-version: '3.11'
architecture: 'x86'
- uses: dtolnay/rust-toolchain@stable
with:
Expand Down Expand Up @@ -365,7 +364,7 @@ jobs:
- uses: actions/setup-python@v4
name: Install Python
with:
python-version: '3.10'
python-version: '3.11'
- name: Install deps
run: pip install -U twine setuptools-rust wheel build
- name: Build sdist
Expand Down

0 comments on commit ac0da4a

Please sign in to comment.