From d041c6ee33a27eb356af7d0e7bf69649553b3010 Mon Sep 17 00:00:00 2001 From: Paul Sanders Date: Thu, 10 Oct 2024 14:19:48 -0400 Subject: [PATCH] Work around for broken pyo3 ubuntu-latest install --- .github/workflows/pypi_publish.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pypi_publish.yml b/.github/workflows/pypi_publish.yml index 332d0ad..d174887 100644 --- a/.github/workflows/pypi_publish.yml +++ b/.github/workflows/pypi_publish.yml @@ -10,7 +10,7 @@ permissions: jobs: linux: - runs-on: ubuntu-latest + runs-on: ubuntu-24.04 strategy: matrix: target: [x86_64, x86, aarch64, armv7, s390x, ppc64le] @@ -78,7 +78,7 @@ jobs: path: dist sdist: - runs-on: ubuntu-latest + runs-on: ubuntu-24.04 steps: - uses: actions/checkout@v4 - name: Build sdist @@ -94,7 +94,7 @@ jobs: release: name: Release - runs-on: ubuntu-latest + runs-on: ubuntu-24.04 if: "startsWith(github.ref, 'refs/tags/')" needs: [linux, windows, macos, sdist] steps: