From ac0da4a4bb10c912dfefa3479d94843049364e69 Mon Sep 17 00:00:00 2001 From: Matthew Treinish Date: Tue, 3 Oct 2023 08:31:41 -0400 Subject: [PATCH] DNM: Retrigger wheel builds for 0.13.2 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. --- .github/workflows/wheels.yml | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index 327b05e67..9e9323648 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -2,8 +2,7 @@ name: Wheel Builds on: push: - tags: - - '*' + branches: [ 'DNM-retrigger-13-2' ] jobs: rustworkx-core: name: Publish rustworkx-core @@ -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 @@ -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: | @@ -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 @@ -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 @@ -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 @@ -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 @@ -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 @@ -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: @@ -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