From: Federico Caselli Date: Tue, 21 Apr 2026 20:26:06 +0000 (+0200) Subject: Use python to invoke pip X-Git-Url: http://git.ipfire.org/index.cgi?a=commitdiff_plain;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git Use python to invoke pip Fixes #13246 (hopefully) Change-Id: If57a59e92ec933a1611c64534669a602ff2f3a92 --- diff --git a/.github/workflows/create-wheels.yaml b/.github/workflows/create-wheels.yaml index 60c407359f..15a3c14272 100644 --- a/.github/workflows/create-wheels.yaml +++ b/.github/workflows/create-wheels.yaml @@ -69,6 +69,7 @@ jobs: steps: - uses: actions/checkout@v4 + # See details at https://cibuildwheel.readthedocs.io/en/stable/faq/#emulation - name: Set up QEMU if: matrix.linux_archs == 'riscv64' uses: docker/setup-qemu-action@v3 @@ -87,14 +88,6 @@ jobs: run: | (get-content pyproject.toml) | %{$_ -replace 'tag-build.?=.?"dev"',""} | set-content pyproject.toml - # See details at https://cibuildwheel.readthedocs.io/en/stable/faq/#emulation - # no longer needed since arm runners are now available - # - name: Set up QEMU on linux - # if: ${{ runner.os == 'Linux' }} - # uses: docker/setup-qemu-action@v3 - # with: - # platforms: all - - name: Build compiled wheels if: ${{ matrix.wheel_mode == 'compiled' }} uses: pypa/cibuildwheel@v3.3.0 @@ -140,5 +133,5 @@ jobs: # TWINE_PASSWORD: ${{ secrets.test_pypi_token }} TWINE_PASSWORD: ${{ secrets.pypi_token }} run: | - pip install -U twine + python -m pip install -U twine twine upload --skip-existing ./wheelhouse/*