]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Use python to invoke pip
authorFederico Caselli <cfederico87@gmail.com>
Tue, 21 Apr 2026 20:26:06 +0000 (22:26 +0200)
committerFederico Caselli <cfederico87@gmail.com>
Tue, 21 Apr 2026 20:26:06 +0000 (22:26 +0200)
Fixes #13246 (hopefully)

Change-Id: If57a59e92ec933a1611c64534669a602ff2f3a92

.github/workflows/create-wheels.yaml

index 60c407359f19951591b09cb59cddbf4ddc8c0c97..15a3c14272edeed651e5c4b36245cce724a0a838 100644 (file)
@@ -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/*