From e2b66f8a4f2bd9e75cf25e086ca4dd56cbc513aa Mon Sep 17 00:00:00 2001 From: Kavin <20838718+FireMasterK@users.noreply.github.com> Date: Tue, 4 Jun 2024 15:12:48 +0530 Subject: [PATCH] Workaround pip bug in manylinux See https://github.com/PyO3/maturin-action/issues/249 --- .github/workflows/python.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index b166f74..bf7ce7f 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -35,6 +35,7 @@ jobs: uses: PyO3/maturin-action@v1 with: target: ${{ matrix.target }} + before-script-linux: 'python3 -m ensurepip' manylinux: '2_28' args: --release --out dist --find-interpreter sccache: 'true'